Preserved Topic: No underline until mousover link |
|
---|---|
Author | Thread |
Obsessive-Compulsive (I) Inmate From: Minneapolis, MN, USA |
posted 08-29-2000 17:52
I have a site where someone would like only 1 specific link to be sans underline until mouseover. Do you know where i can find a script for this? |
Neurotic (0) Inmate Newly admitted |
posted 08-29-2000 18:05
thats easy.. its just css code: a:link, a:active, a:visited { color: rgb(203,185,156); text-decoration: none; font-weight: 700 }
|
Maniac (V) Inmate From: Boston, MA, USA |
posted 08-29-2000 18:12
If I understand the question right, the rest of the links on the page are set to no decoration, right? And just one of them is different? So you have to make a pseudo link class for that one particular link maybe. Or does the css in the above post overide the overall page css? |
Maniac (V) Mad Scientist From: 100101010011 <-- right about here |
posted 08-29-2000 18:21
Steve you are right, the CSS above needs to be tweaked otherwise they are all gonna get tagged with underlines. Something like this: |
Maniac (V) Inmate From: under the bed |
posted 08-29-2000 18:48
yes it is possible and in fact very easy. are you familiar with CSS at all? if not, ou should look into it -- it is fairly simple to learn and extrememly useful. |
Maniac (V) Inmate From: Boston, MA, USA |
posted 08-29-2000 21:05
Or http://www.westciv.com/style_master/house/tutorials/index.html |
Obsessive-Compulsive (I) Inmate From: Minneapolis, MN, USA |
posted 08-29-2000 21:58
Thanx all for your help. I knew there must be a way to do this with CSS, i just couldn't find the correct resources to get started. Until i posted here. |