Hey guys-
I'm having a problem. All of my links (text links as well as images) have a weird effect. When text becomes linked, it turns blue and becomes underlined. When an image becomes linked, it gets a border that messes up my tables.
Basically I'm wondering what I need to type in to get rid of that underline and the border on the image.
Thanks!
Link properties
Started by MadHatter, Oct 19 2006 08:07 PM
4 replies to this topic
#1
Posted 19 October 2006 - 08:07 PM
#2
Posted 19 October 2006 - 08:19 PM
What are you using to do this..? DREAMWEAVER or are you just putting the code in?
Edited by N-sane Noob, 19 October 2006 - 08:37 PM.
#3
Posted 19 October 2006 - 08:39 PM
I'm using an old version of FrontPage although I mostly edit in Notepad.
#4
Posted 20 October 2006 - 09:00 AM
To fix the images with the blue border around them, make sure border="0" for the images you have linked. If you'd like to change the color of your links on your page you can do that with some CSS:
a:link {
set whatever you want here
}
a:hover {
set whatever you want here
}
#5
Posted 20 October 2006 - 12:43 PM
N-sane Noob, on Oct 19 2006, 07:19 PM, said:
What are you using to do this..? DREAMWEAVER or are you just putting the code in?
Jacorre, on Oct 20 2006, 08:00 AM, said:
To fix the images with the blue border around them, make sure border="0" for the images you have linked. If you'd like to change the color of your links on your page you can do that with some CSS:
a:link {
set whatever you want here
}
a:hover {
set whatever you want here
}a { text-decoration:none; } /* Removes underline on all links. */
a img { border:0; } /* Removes border from linked images only */
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users
