Log in

View Full Version : i need help with a navigation hover and cursors!!!



ModernRevolutions
10-08-2006, 10:58 PM
I want my naviagtion to do the same thing that this page does: http://www.swimchick.net

and i need a code to change my cursor to the help cursor

codeexploiter
10-09-2006, 10:21 AM
This can be done usnig CSS without much problem. The entry you need in your link hover style is the following


TEXT-TRANSFORM: uppercase;


A.navigation:visited {
DISPLAY: block; FONT-SIZE: 8pt; MARGIN: 0px; TEXT-TRANSFORM: lowercase; FONT-FAMILY: Arial, Helvetica, sans-serif; TEXT-DECORATION: none
}
A.navigation:active {
DISPLAY: block; FONT-SIZE: 8pt; TEXT-TRANSFORM: lowercase; FONT-FAMILY: Arial, Helvetica, sans-serif; TEXT-DECORATION: none
}
A.navigation:hover {
DISPLAY: block;FONT-SIZE: 8pt; TEXT-TRANSFORM: uppercase; FONT-FAMILY: Arial, Helvetica, sans-serif; TEXT-DECORATION: none
}

You can find the difference between the hover, visited and active style i mentioned above

ModernRevolutions
10-09-2006, 02:11 PM
that doesn't do that background color i want it to do like it does on the site. its barely noticiable