Hide "Posted by ...." "Posted in ....."

Discussion in 'BizWay WordPress Theme' started by amado, Sep 13, 2013.

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

    amado New Member

    Joined:
    Oct 5, 2012
    Messages:
    25
    Likes Received:
    0
    Would like to hide this on category pages and in actual post:
    Hide "Posted by ...." "Posted in ....."
    I can see where I can do this in the Single Post (single.php) file
    yet what can I place in my "edit CSS " to not have to modify core file.
    Please advise, thank you for all your help in advance :)
     
  2. amado

    amado New Member

    Joined:
    Oct 5, 2012
    Messages:
    25
    Likes Received:
    0
    .content-bar .post .post_meta {
    display: none;
    }

    .content-bar .post .post_title {
    margin-bottom: 30px;
    padding-left: 65px;
    padding-right: 20px;
    padding-top: 0;
    }
     
  3. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    You can paste this code also instead of above code, in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .content-bar .post .post_meta .post_category {
    display: none;
    }
    .content-bar .post .post_meta .posted_by {
    display: none;
    }
    .content-bar .post .post_meta {
    padding-bottom: 10px;
    }
    This will solve your issue.
     
  4. amado

    amado New Member

    Joined:
    Oct 5, 2012
    Messages:
    25
    Likes Received:
    0
    Thank You :)
     
Thread Status:
Not open for further replies.

Share This Page