How to remove image shadow in Sempress (wordpress.com)?
-
Can anyone help with the css code that I would need for removing the image shadow in the Sempress theme?
Thank you!The blog I need help with is: (visible only to logged in users)
-
Hi there,
I was only able to find a very soft shadow around your images, are you referring to this shadow? If so, use the following CSS (paste in Customize>CSS):entry-content img { box-shadow: none; } -
-
(Sorry, I have two profiles and accidentally used the wrong one! It’s still dukewithfunnysocks replying…)
-
Hi there, the above code is missing the period ( . ) before entry-content, like this.
.entry-content img { box-shadow: none; } -
Thank you! Now it is gone in the blogposts. Can you also help me remove it in the widgets?
-
I also would love some help with removing the lines between the widgets. Do you know how to do that?
-
Replace the code you have now for the box shadow with the following which removes the box shadow on images everywhere and also removes the bottom border line on the widgets.
.site-header img, .entry-content img, .comment-content img, .widget img, #masthead img { box-shadow: none; } .widget { border-bottom: none; } -
Thanks a bunch! That was very helpful :)
Can I trouble you one last time? I’m really new at this :) I would like to also remove the line in the header – the one under the menus. Do you know how to do that?
-
You are welcome, and for the line on the bottom of the menu, add this to make it disappear.
.main-navigation { border: none; } -
-
- The topic ‘How to remove image shadow in Sempress (wordpress.com)?’ is closed to new replies.