- This topic has 1 reply, 2 voices, and was last updated 6 years, 8 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- The topic ‘Remove Titles from Featured’ is closed to new replies.
Home › Forums › Trusted Pro › Remove Titles from Featured
I would like to remove the titles from the featured boxes on the front. Anyway I can do this? Right now I am using custom images from the excerpt box but my images have my titles in them.
To remove the titles, add this to Customize > Additional CSS:
#featured-post-section .featured-post h4 {
display: none;
}
If you want to hide the titles, but still keep the white space where the titles would have been, use this instead:
#featured-post-section .featured-post h4 {
visibility: hidden;
}