Every image has a 1 pixel rounding corner in Constructor.
How Can I turn it off?
I want to fit images tight with separate links and this rounding spoils the look. It is just 1-1 pixel in every corner, but it is visible in this solution.
Every image has a 1 pixel rounding corner in Constructor.
How Can I turn it off?
I want to fit images tight with separate links and this rounding spoils the look. It is just 1-1 pixel in every corner, but it is visible in this solution.
on the css, find this:
.hentry .entry .crop, .hentry .entry img
and add this style:
border-radius: 0px !important;
-moz-border-radius: 0px !important;
-webkit-border-radius: 0px !important;Thank You!
This topic has been closed to new replies.