Hello, Underneath each post title there are details of the author, date, category and comments. Is there a way where I can have that information deleted and not show at all on my site? Thanks
Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .content_wrapper .content .post .post_meta{ display:none; }
Thank you Gourav - it worked perfectly.... Another issue that I was talking with Neeraj about was trying to get rid of the 'Comments & Responses' default text with smaller text 'Comments are closed.' that is displayed at the bottom of my pages. He sent me this message with this code to delete: Open the comments.php file in your Theme directory under wp-content/themes/cloriatotheme <p class="no comments">Comments are closed.</p> It worked great but only deleted the words Comments are closed. The 'Comments & Responses' default text is still showing, can you please help me to remove it Gourav?... Thank you so much
Paste the following code in your custom css Appearance -> Theme Options -> Styling Options -> Custom CSS Code: .content h3 { display: none; } This will solve your issue.