Hide Elements on Post Page

Hide some elements on Post Page

These options are valid only when Post Content type is set as post processed.
Screen Shot 2015-12-19 at 9.43.05 AM
To hide some content in your post page you can put below css in the define custom css here for post processed content type (see screenshot above)

Hide Featured Image
.androappfimage{
display:none;
}

Hide Featured Image Description
.androappfimagedesc{
display:none;
}

Hide Author
.androappauthor {
display:none;
}

Hide Post Title
.androapptitle {
display:none;
}

Hide Time Ago Text
.androapptimeago {
display:none;
}

Hide Category
.androappcategory {
display:none;
}

To hide multiple things, separate them by comma in one line
.androapptitle, .androappfimage, .androappfimagedesc,.androappauthor,.androapptimeago,.androappcategory{
display:none;
}

By using some more css knowledge, you can even control the text color, size etc.

Related Post

Leave a Reply

Your email address will not be published. Required fields are marked *