Viewing 4 replies - 1 through 4 (of 4 total)
  • looks like teh nav underline is/was controlled here:

    ul#menu li a:hover, ul#menu li a:active, .menu ul li a:hover, .menu ul li a:active, ul#menu li.current_page_item a, .menu ul li.current_page_item a:link, .menu ul li.current_page_item a:visited, .menu ul li.current_page_item a:hover, .menu ul .current_page_item a:active
    {
    	background-color:#000000;
    	text-decoration:#fd1d1d;
    	color:#e3e2e2;
    }

    however, did you edit that? text-decoration:#fd1d1d;
    is not valid

    Sorry, accidentally submitted that, to continue. You can’t change the color of just an underline, the underline is the same color as the text. But you can fake it with a border

    ul#menu li a:hover, ul#menu li a:active, .menu ul li a:hover, .menu ul li a:active, ul#menu li.current_page_item a, .menu ul li.current_page_item a:link, .menu ul li.current_page_item a:visited, .menu ul li.current_page_item a:hover, .menu ul .current_page_item a:active
    {
    	background-color:#000000;
    	text-decoration:none;
    	color:#e3e2e2;
             border-bottom: 1px solid #ffffff;
    }

    change the border colour to suit your needs

    Thread Starter vbpartners

    (@vbpartners)

    wow… you are great ?? thanks for the tip.. have copied it into my on-going list of how-to’s….

    worked like a charm ??

    Sure thing, glad it helped. I like that little tip myself. Lets you have more stylish underlines (dotted, coloured, etc)

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Changing Nav Bar hover underline color’ is closed to new replies.