Hi Mahesh
I added your text to my CSS-box. See link…
But nothing happened.
So guess I have to create a child theme.
But I’m rather new to this, so excuse me for asking a basic question:
Can I just add the CSS-text you sent me, to line 6 below?
Or do I have to copy the whole ‘comment.php-text’ from the parent theme, paste it and then do all the modification I want?
<?php
/**
* Child Theme functions and definitions
*
*/
/**
* Loading Parent theme stylesheet
*
*/
add_action( ‘wp_enqueue_scripts’, ‘catchbase_child_enqueue_styles’ );
function catchbase_child_enqueue_styles() {
wp_enqueue_style( ‘catchbase-parent-style’, get_template_directory_uri() . ‘/style.css’ );
}