Results 1 to 3 of 3

Thread: i need help with a navigation hover and cursors!!!

  1. #1
    Join Date
    Aug 2006
    Posts
    235
    Thanks
    30
    Thanked 2 Times in 2 Posts

    Default i need help with a navigation hover and cursors!!!

    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
    Last edited by ModernRevolutions; 10-08-2006 at 11:22 PM.

  2. #2
    Join Date
    Sep 2005
    Location
    India
    Posts
    1,627
    Thanks
    6
    Thanked 107 Times in 107 Posts

    Default

    This can be done usnig CSS without much problem. The entry you need in your link hover style is the following

    HTML Code:
    TEXT-TRANSFORM: uppercase;
    HTML Code:
    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

  3. #3
    Join Date
    Aug 2006
    Posts
    235
    Thanks
    30
    Thanked 2 Times in 2 Posts

    Default

    that doesn't do that background color i want it to do like it does on the site. its barely noticiable

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •