How to get rid of book icon in the blog/ using Renew theme

  1. How do I get rid of the little book icon in the blog? I’m using the Renew theme.

  2. Also, can I get rid of the coloured circle rollovers on the social icons at the footer?

Thank you!

Hi @olive47,

Thanks for reaching out.

  1. It’s a special feature of that stack and can’t be turned off. But you can hide it through CSS, please add this CSS to you global custom CSS.
.blog .entry-title:before, .single-post .entry-title:before  {
 display: none;
}
  1. And this as well,
    .x-social-global a:hover {
     background: transparent !important;   
    }

Hope this helps :slight_smile:

Worked perfectly… thanks!

You’re welcome!
Thanks for letting us know that it has worked for you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.