Blue box showing up around image with hyperlink

Permalink
I've added images under Content and added hyperlink to the images. Somehow there are blue boxes around the images with the links. How do I remove them?

 
Brainakazariua replied on at Permalink Reply
Brainakazariua
In the block click on the image, click on the edit icon and under the tab Appearance set the border to 0
WebcentricLtd replied on at Permalink Reply
hi,
if it isn't the explicit border setting for that image then I'd set the CSS style for img in that area of your page to border:0;
agnescardgenie replied on at Permalink Reply
How do I change the CSS style?
Mnkras replied on at Permalink Reply
Mnkras
are you using a custom theme? change it in the themes css, (probably the id img)
WebcentricLtd replied on at Permalink Reply
if you don't want any borders round any images that are hyperlinked you'd put something like:

a img {border:0 none};

in your css outside of any layout elements
Steevb replied on at Permalink Reply
Steevb
As AndyJ said, but.

a img {border: none;}

Put it anywhere in your CSS file called main.css or style.css or something.css

OK