Remove meta info from posts

Discussion in 'BlogSpring WordPress Theme.' started by csandke, Jul 9, 2014.

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

    csandke New Member

    Joined:
    Aug 2, 2013
    Messages:
    15
    Likes Received:
    0
    Hi

    See picture
    1, Top info i could totally remove with this css: .post ul.post_meta {display: none;}
    But if i wan't to keep date info and remove written by and category, what css do i use then?

    2, Bottom "by Admin", how do i remove this?

    Br
    Kent Andersson
     

    Attached Files:

  2. Piyush

    Piyush Support Staff

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

    1. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .content-bar .post.single ul.post_meta li.posted_author {
    display: none;
    }
    .content-bar .post.single ul.post_meta li.post_category {
    display: none;
    }
    
    This will remove "written by" and "category" from the meta data of post.

    2. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .content-bar .author_bar .author_info {
    display: none;
    }  
    This will remove the author info from the post.
     
  3. csandke

    csandke New Member

    Joined:
    Aug 2, 2013
    Messages:
    15
    Likes Received:
    0
    Thanks.
     
Thread Status:
Not open for further replies.

Share This Page