English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

When you place the cursur over the links on the home page of my tennis site, www.attennis.com, I would like to have the link word not move any and just be underlined with the cursur over it. But when I right click on page properties, advanced, roll over properties, and change the settings to just underline, then the link word has no behavior at all. An example of what I would like my text links to do is at www.tennis.com Any help is appreciated.

2006-12-20 05:57:17 · 4 answers · asked by william k 2 in Computers & Internet Programming & Design

4 answers

You can achieve this with CSS easily.

a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: none;
}


You can add in these options and change the behavior even more:
font-weight: normal;
font-style: italic;
Tailor it to fit your wants and needs. Weight is bold or normal, style is italic or normal. There's many more options with CSS but that's how you'd achieve underline for rollover only.

I recommend learning CSS, it'll give you a lot more flexibility and understanding while developing with FrontPage.
http://w3schools.com/css/default.asp

2006-12-20 06:02:51 · answer #1 · answered by π² 4 · 2 0

Hi!

This behavior occurs because the text changes from normal to bold. By changing the button On Hover properties, you can change that.

Good luck!

2006-12-20 14:01:32 · answer #2 · answered by Robintel 4 · 1 0

Found it it is in your heading...





The Style fprollover remove the weight bold

Cut this part out
; font-weight: bold

Leaving only



Victor C.

2006-12-20 14:03:02 · answer #3 · answered by Victor C 4 · 1 0

Use dreamweaver

2006-12-20 14:00:07 · answer #4 · answered by usa_fox1234 3 · 0 1

fedest.com, questions and answers