Can I Get Rid Of This?

Discussion in 'Cloriato WordPress Theme' started by everisingsun, Feb 11, 2013.

  1. everisingsun

    everisingsun New Member

    Joined:
    Feb 8, 2013
    Messages:
    5
    Likes Received:
    0
    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
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .content_wrapper .content .post .post_meta{
    display:none;
    }
     
  3. everisingsun

    everisingsun New Member

    Joined:
    Feb 8, 2013
    Messages:
    5
    Likes Received:
    0
    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
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    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.
     

Share This Page