I would like to learn How to remove Blog Date/Author and # of Comments that shows up above posts. thanks ahead of time! You guys are great!
Hello, Paste the following code in your Custom CSS (Appearance -> Theme Options -> Styling Options -> Custom CSS) Code: .content-bar .post .post_meta li.post_date { display: none; } .content-bar .post .post_meta .posted_by { display: none; } .content-bar .post .post_meta .post_comment { display: none; } This will remove the Blog Date, Author and # of Comments that shows up above posts. If you want to remove post category also (means all the post meta that shows up above posts ) then paste the following code in your Custom CSS Code: .content-bar .post .post_meta { display: none; } This will remove all the post meta that shows up above posts.