Hide some elements on Post Page
These options are valid only when Post Content type is set as post processed.
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.