How can I disable post tags so they don’t appear under a post?
Right now, I also have a big image of the featured image and the post title, and I’d like to remove both as well.
How can I disable post tags so they don’t appear under a post?
Right now, I also have a big image of the featured image and the post title, and I’d like to remove both as well.
Hello Alvaro,
Thanks for writing in!
Regretfully there is no option in the theme that you can get rid of the tags below your posts. You need to add CSS code into X > Theme Options > CSS to be able to hide it.
You need to use the Google Chrome Developer Toolbar to check the live HTML code and find which CSS selector you need to use.
The tags were using .entry-footer container class, therefore a proper CSS selector to hide the tags will be:
.entry-footer {
display: none;
}
If you need to get rid of the featured image and post title, you must check the live HTML code of the page and find out the CSS selector as well and use the same code as above. To learn more about the CSS
displayproperty, please check this out: https://www.w3schools.com/cssref/pr_class_display.asp
We are unable to provide CSS code for the customization as it is outside of our support scope. The points above will be a good starting point and if you are interested you can learn more about CSS selectors and details here
Thank you for your understanding.
Wonderful, I easily got rid of both things. Thanks you!!!
You’re welcome, Alvaro.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.