adjust corners of image
-
Hi,
I chose the button theme, and I’m really happy with it. However, I don’t like the way it cuts the corners of my images (for example, see sietskewalda.com).
I’m wondering if there’s a way to customize it, so that the corners of my images will be straight.I have tried several CSS examples, for example:
.featured-image:before, .featured-image:after, .featured-image>.corners:before, .featured-image>.corners:after {
background-image: none;
}but is has not proven useful yet.
The blog I need help with is: (visible only to logged in users)
-
Try adding !important and see if it works.
.featured-image:before, .featured-image:after, .featured-image>.corners:before, .featured-image>.corners:after { background-image: none !important; } -
-
How bout this one?
.featured-image:before, .featured-image:after, .featured-image > .corners:before, .featured-image > .corners:after { background-image: none !important; z-index: -1 !important; } -
-
Can you maybe try adding:
opacity: 0 !important;
content: none !important;And see if it works?
I’m sorry I couldn’t be much help either, if you need to contact staff to solve this matter, please add ‘modlook’ in the tags field on the right sidebar.
-
Hi, I took a look in your customizer and on the CSS rule you have in there now, there is a missing ending curly bracket. If there is a missing ending bracket, any CSS after that is ignored by the browser. Add an ending bracket to that rule and then add the following to get rid of the corners on the images.
.featured-image::before, .featured-image::after, .featured-image > .corners::before, .featured-image > .corners::after { display: none; } -
-
- The topic ‘adjust corners of image’ is closed to new replies.