I thought it easy to set an image border for a specific picture in a specific page. just put something in the img src tag... but I do not get it to work...
How can I cater for this?
Fetching latest tweet ...
I thought it easy to set an image border for a specific picture in a specific page. just put something in the img src tag... but I do not get it to work...
How can I cater for this?
First add this to Custom CSS
.no-border-image {
border: none !important;
}
Then add this within <img tag
class="no-border-image"
Example,
<img src="http://domain.tld/image.png" class="no-border-image" />
great this did the trick!
This topic has been closed to new replies.