View Full Version : i need help with a navigation hover and cursors!!!
ModernRevolutions
10-08-2006, 11: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, 11: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, 03:11 PM
that doesn't do that background color i want it to do like it does on the site. its barely noticiable
vBulletin® v3.8.1, Copyright ©2000-2012, Jelsoft Enterprises Ltd.