Link to home
Start Free TrialLog in
Avatar of dgarofalo
dgarofaloFlag for United States of America

asked on

How Do I Remove Hyperlink Border from Image Link?

How do I get rid of the blue border on the active state when clicking on the logo in the upper-left corner to back to the home page?

https://sheboyganbjj.com

I already added the following code as an embedded style.

#Map img a:active {
    border: 0;
    text-decoration:none;
}
Avatar of Paul MacDonald
Paul MacDonald
Flag of United States of America image

#Map img a:active {
    border: 0;
    text-decoration:none;
    outline: none;
}
Avatar of Dr. Klahn
Dr. Klahn

<IMG SRC="thisismyimage.png" ALT="this is my image" BORDER="0">

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of lenamtl
lenamtl
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial