Navigation Bar

Discussion in 'Blogging' started by KutheMedia, Dec 2, 2008.

  1. #1
    This question is regarding the site in my signature. It seems like when you scroll over domains and sites it gets bigger, but if you go over home, network and contact it doesn't. So can someone tell me how to make it so that they stay still when you mouse over them. Thanks!
     
    KutheMedia, Dec 2, 2008 IP
  2. spencerp

    spencerp Well-Known Member

    Messages:
    222
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    130
    #2
    Hi,

    My guess would be, because your normal Nav links are at font-size: 11pt, and your hover, visited, and active links are at font-size:12pt. Change the hover, visited, and active font sizes to 11pt once, see if that helps. ;)

    In your stylesheet, find this:

    #nav a{
    
    	font-size:11pt;
    
    	font-variant:small-caps;
    
    	font-weight:700;
    }
    
    
    
    #nav a:link {
    
    	color: #2b5999;
    
    	text-decoration: none;
    
    }
    
    #nav a:visited {
    
    	font-size:12pt;
    
    	text-decoration: none;
    
    	color: #2b5999;
    
    }
    
    #nav a:hover {
    
    	font-size:12pt;
    
    	text-decoration: none;
    
    	color: #2b5999;
    
    }
    
    #nav a:active {
    
    	font-size:12pt;
    
    	text-decoration: none;
    
    	color: #2b5999;
    
    }
    Code (markup):
    And change it to this once:

    #nav a{
    
    	font-size:11pt;
    
    	font-variant:small-caps;
    
    	font-weight:700;
    }
    
    
    
    #nav a:link {
    
           font-size:11pt;
    
    	color: #2b5999;
    
    	text-decoration: none;
    
    }
    
    #nav a:visited {
    
    	font-size:11pt;
    
    	text-decoration: none;
    
    	color: #2b5999;
    
    }
    
    #nav a:hover {
    
    	font-size:11pt;
    
    	text-decoration: none;
    
    	color: #2b5999;
    
    }
    
    #nav a:active {
    
    	font-size:11pt;
    
    	text-decoration: none;
    
    	color: #2b5999;
    
    }
    Code (markup):
     
    spencerp, Dec 2, 2008 IP