How do I remove the “Entry Icons” from my site on X Theme Renew Stack?
Also, how can I remove the grey lines/frames/boxes that show up around the featured images for blog posts?
Thanks
Rich
How do I remove the “Entry Icons” from my site on X Theme Renew Stack?
Also, how can I remove the grey lines/frames/boxes that show up around the featured images for blog posts?
Thanks
Rich
Hey Rich,
Please add this code in X > Theme Options > CSS:
.blog .entry-title:before {
display: none;
}
Hope this helps.
Thanks, that worked.
Now I just need to remove the grey lines that frame each featured post on my homepage.
Is there a code I can add to get rid of those?
Thanks
Hello Rich,
Please add this code as well:
.blog .entry-featured {
padding: 0;
border: 0;
}
Hope this helps.
works like a charm. thank you
You’re welcome!
We’re glad we were able to help you out.
It looks like the entry icons are still showing up on the individual blog post pages. Is there a code I can add to remove them from all blog posts as well? Thanks
Hello Rich,
Thanks for updating the thread.
Please use following CSS under X > Theme Options > CSS:
.single-post .entry-title:before {
display: none !important;
}
1- I have found the proper CSS code selector using the Chrome browser Developer Toolbar: https://www.youtube.com/watch?v=wcFnnxfA70g
2- For the CSS code itself, I suggest that you get started with this tutorial: https://www.youtube.com/watch?v=yfoY53QXEnI
Thanks.
great thank you
You’re welcome, Rich.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.