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?
In the block click on the image, click on the edit icon and under the tab Appearance set the border to 0
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;
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;
How do I change the CSS style?
are you using a custom theme? change it in the themes css, (probably the id img)
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
a img {border:0 none};
in your css outside of any layout elements
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
a img {border: none;}
Put it anywhere in your CSS file called main.css or style.css or something.css
OK