Home › Forums › WordPress Themes – Premium › Preference › Image Border not removing › Reply To: Image Border not removing
November 18, 2014 at 10:13 pm
#20665
Moderator
Awesome..thanks for the link. The bordering is applied to this CSS in the style.css file (which you can edit directly if you want because there are no more updates to this theme).
.img-intro img,
.img-intro-left img,
.img-intro-right img,
.img-intro-none img,
.imageborder,
.contact-image img,
.entry-attachment img,
img.alignnone,
img.alignright,
img.alignleft,
img.aligncenter,
div.wp-caption img {
border-bottom:8px solid #78a5b6;
}
You can choose all or select images above to do this:
border: none; (or border: 0;)
In relation to that page with the logos, you could do:
img.aligncenter {
border: 0;
}
By the way, your added style to the image tag should work but I noticed you have the coding incorrect on a couple:
<img class="style="border:none;" aligncenter" .......
It should be:
<img class="aligncenter" style="border: none;"
Another you have as:
<img class="aligncenter style=" src="http://dev.floridametrology.com/wp-content/uploads/Nu-Flexbar-1.png" .......
But the style=” is wrapping the image src, which it should not be.