How to Remove 'Comments' and 'Posted By'

Discussion in 'Andrina WordPress Theme' started by sandymcdonald, May 30, 2013.

Thread Status:
Not open for further replies.
  1. sandymcdonald

    sandymcdonald Member

    Joined:
    May 29, 2013
    Messages:
    100
    Likes Received:
    1
    What is the best way to remove 'comments' and 'posted by' for posts? I know it appears in the blog, single post, search and loop for category if I recall correctly. Is there an easy way to remove using CSS rather than modifying child files?
     
  2. Hello,

    Put the following code in your Custom CSS
    Code:
    .content-bar .post .post_meta li.posted_by {
    display: none;
    }
    .content-bar .post .post_meta a {
    display: none;
    }
    Appearance -> Theme options ->Styling options ->Custom CSS

    This will solve your problem.

    Have a great day ahead.
     
  3. sandymcdonald

    sandymcdonald Member

    Joined:
    May 29, 2013
    Messages:
    100
    Likes Received:
    1
    Screen Shot 2013-05-30 at 8.01.02 AM.png

    When I placed the above code in the custom css, it changed the date format and also made the category information disappear. The category icon and the word 'category' still appear but with specific category data to follow. Also, the comment icon is appearing. See attachment.
     
  4. sandymcdonald

    sandymcdonald Member

    Joined:
    May 29, 2013
    Messages:
    100
    Likes Received:
    1
    I changed the code above to the code and it worked.

    Code:
    .content-bar .post .post_meta li.posted_by {
    display: none;
    }
    .content-bar .post .post_meta li.postc_comment {
    display: none;
    }
    Thanks deepwadha.
     
Thread Status:
Not open for further replies.

Share This Page