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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Rollover effects

Status
Not open for further replies.

sbeltyukov

Technical User
Jan 24, 2007
8
0
0
US
Hi,

I created a rollover effect for all of the links by going to Modify --> Page Properties --> Links --> Rollover links. I did this for all of my pages but only the main page seems to have the rollover effects. I have the following code in all of my pages:

Code:
a:hover {
	text-decoration: none;
	color: #FF9900;
}

Any ideas on what might be wrong?


Thanks!
 
1st check to see if you are calling(importing/linking) CSS file on each page.
It also would be a good idea to declare all 4 classes.
Here is a quick snip you can use:
Code:
a:link {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-style: normal;
  color: Blue;
  text-decoration: none;
}
 a:visited{
 color: Blue;
 text-decoration: none;
}
a:hover{
color: Blue;
 text-decoration: none;
 border-bottom: 1px dashed;
}
a:active{
color: Blue;
}

All the best!

:--------------------------------------:
fugitive.gif


All around in my home town,
They tryin' to track me down...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top