Help me destroy a bit of CSS code
-
I’m using the Nexus theme.
If you go to my blog and click on a blog post, it shows a huge version of my featured image at the top of the page. I HATE THIS! Most of my featured images are not big enough. Plus, it just looks weird.
When I click “inspect element” it says: div id “bigthumbnail”
How do I take out big thumbnail?
The blog I need help with is: (visible only to logged in users)
-
Destroying is easy :-)
Just set its display to none as following:
div#big_thumbnail { display: none; }
- The topic ‘Help me destroy a bit of CSS code’ is closed to new replies.