Viewing 4 reply threads
You must be logged in to reply to this topic.
Hi,
If I add an image + a image title to a blog post, I see a strange border around the image. How can I remove the border?
Example: https://www.blattspiel.at/wordpress/hagebutten-verkostung/
Thank you!
Hello,
Please add this code into your custom css box:
.single-post .wp-caption {
border: none !important;
}
Result: https://www.clipular.com/c/5456527299444736.png?k=pI6jypvBTq4Hkpxyt1dxNUMka64
Best regards!
Thanks! But the border ist still there, although much lighter.
Hello,
That is the box shadow. I was not sure you wanted that removed too, so i send you the css for only the border. Please edit code to this:
.single-post .wp-caption {
border: none !important;
-webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, 0) !important;
-moz-box-shadow: 0 0px 0px rgba(0, 0, 0, 0) !important;
box-shadow: 0 0px 0px rgba(0, 0, 0, 0) !important;
}
Best regards!
You must be logged in to reply to this topic.