Cheers Mates!
I have made a picture link, the problem is, it has a blue outline around it. I have tried everythig in Front Page, HTML, and Dreamweaver to get rid of it. I know how to change the colour of the line, but I need to get rid of it. Suggestions?
Cheers,
EvilMonkey Admin.
Picture Links
Moderator: General Moderators
- evilmonkey
- Forum Regular
- Posts: 823
- Joined: Sun Oct 06, 2002 1:24 pm
- Location: Toronto, Canada
getting ride of blue underline
I you want to get rid of the blue underline in a link see this example
the style="text-decoration: none" is the important part of this it will get rid of the underline on the link.
will change the intial link the hover llink and the visited link colours all to black.
Hope this is what you where looking for.
phpScott
Code: Select all
<a style="text-decoration: none" href="somepage.html">somepage.html</a>Code: Select all
<body alink="#000000" link="#000000" vlink="#000000">
<a style="text-decoration: none" href="index.htm">index</a>Hope this is what you where looking for.
phpScott
- EvilWalrus
- Site Admin
- Posts: 209
- Joined: Thu Apr 18, 2002 3:21 pm
- Location: Springmont, PA USA
to remove the border aroudna picture (via link), add the border=0 attribute to the tag, or in CSS use:
Code: Select all
img {
border: none;
}- evilmonkey
- Forum Regular
- Posts: 823
- Joined: Sun Oct 06, 2002 1:24 pm
- Location: Toronto, Canada
Hi.
There's a much easier way Ifound through HTML:
To evilwalrus:
CHEERS TO EVIL!
Cheers.
There's a much easier way Ifound through HTML:
Code: Select all
<A HREF="whatever"><IMG SRC="whatever" border="0"></a>CHEERS TO EVIL!
Cheers.
- twigletmac
- Her Royal Site Adminness
- Posts: 5371
- Joined: Tue Apr 23, 2002 2:21 am
- Location: Essex, UK
- evilmonkey
- Forum Regular
- Posts: 823
- Joined: Sun Oct 06, 2002 1:24 pm
- Location: Toronto, Canada