Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

css problem - this is really #@%! me off!!!

Status
Not open for further replies.

Goat

Programmer
Jul 13, 2000
36
DK
Hi all
I'm using Dreamweaver 4. I am trying to make it so that when the user does a mouseOver on a link then that link changes colour and displays a line under the link. I am using the css functions in DW and everything is working fine except one or two links dont behave like the the others do. for example one link will show an underline when all others dont.
I've checked the code but cant see anything different in there.
Does anyone have any suggestions?
 
The first thing that came to mind is that you may be viewing it in Netscape, if you are then the hover effect will not work unless you are using Netscape 6.

Otherwise, compare your code top this code:
Code:
<STYLE TYPE=&quot;TEXT/CSS&quot;><!--
A:link	{
color:blue;
text-decoration:none;
	}
A:hover	{
color:red;
text-decoration:underline;
	}
//--></STYLE>
» » » » » »
Mike Barone
FREE and Pro CGI/Perl Scripts

FREE Scripts
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top