Forums

Change Menu Items Text Color and Remove Links (5 posts)

  1. eliscio
    Member
    Posted 2 years ago #

    Hi Everyone,

    In less than two days, I've rippped part code and removed and tweaked to get my own template.

    I am quite excited as to how this all is coming together (albeit, my purposes are quite simple).

    Can someone help me locate the code to remove the underline and link color from my main menu? It was white text but I obviously fat fingered some code and can't seem to get it back.

    Page I am working on is here:

    http://ai2-3d.com/WordPress/

    Thanks,

    Eugene

  2. alchymyth
    The Sweeper
    Posted 2 years ago #

    style.css:

    #header a {
    
    	color: #000
    
    	text-decoration: none;
    
    }

    a semicolon is missing after #000

    is that the way you want your main menu links: black, no underline, no hover state?

  3. eliscio
    Member
    Posted 2 years ago #

    Man, you guys are fast!

    I really want them to be white and then turn a dark color when theyy are being hovered.

    There is a lot more I would like to do, but hey, small steps here.

    Much appreciated!

    Eugene

  4. alchymyth
    The Sweeper
    Posted 2 years ago #

    turn a dark color when they are being hovered.

    #header a:hover {
    	color: #555;
    }

    http://www.w3schools.com/css/css_pseudo_classes.asp

  5. eliscio
    Member
    Posted 2 years ago #

    Thank you! I'll get onto putting that in asap!

Topic Closed

This topic has been closed to new replies.

About this Topic