Remove icons on blog posts

Discussion in 'Squirrel WordPress Theme' started by shawkins, Jul 18, 2013.

  1. shawkins

    shawkins New Member

    Joined:
    Mar 28, 2013
    Messages:
    14
    Likes Received:
    0
    How do you remove the icons for the blog posts? The icons right at the top of each post for author, date, categories etc.

    Thx
     
  2. Piyush

    Piyush Support Staff

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

    Paste the code given below in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .page-content .content-bar .post .post_meta .posted_by {
    background: none;
    }
    .page-content .content-bar .post .post_meta .post_date {
    background: none;
    }
    .page-content .content-bar .post .post_meta .post_category {
    background: none;
    }
    .page-content .content-bar .post .post_meta .postc_comment {
    background: none;
    }
    This will solve your issue.
     

Share This Page