• Resolved cottonduckdesignstudio

    (@cottonduckdesignstudio)


    [topic title moderated – http://codex.wordpress.org/Forum_Welcome#Choose_A_Good_Topic_Title ]

    Website: cottonduckdesignstudio.com

    Let me preface by saying the thought of code makes me break out in hives, I have no problem with copy paste, but I must be dumb, because I DONT GET IT! 🙁

    What I am wanting to do is change the color of the “link” (I think it’s called a link) I have a custom menu on the portfolio page, its blue and when hovered turns red 🙁

    I would like it to be black and when hovered turns grey.

    I have options in my theme, Brunelleschi, for custom CSS but I have NO IDEA what to put in….

    Help me Obi-wan Kenobi!

Viewing 3 replies - 1 through 3 (of 3 total)
  • I’m sorry but it is really beyond the scope of these forums to deal with general CSS issues. Try a dedicated CSS resource such as http://www.css-discuss.org/ instead. In the meantime, try using Firefox with the Firebug add-on for this kind of CSS work. Or use whatever developer tool is available in your web browser.
    http://getfirebug.com/

    Thread Starter cottonduckdesignstudio

    (@cottonduckdesignstudio)

    Thank you!

    I’ll take all the help I can get. The firefox/ firebug went right over my head but I’ll look it up.

    Thanks esmi!

    Thread Starter cottonduckdesignstudio

    (@cottonduckdesignstudio)

    This did it

    a:link {
    color: #000000;
    text-decoration: none;
    }

    a:active {
    color: #000000;
    text-decoration: none;
    }

    a:visited {
    color: #A7A094;
    text-decoration: none;
    }

    a:hover {
    color: #A7A094;
    text-decoration: none;
    }

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘change color of "link" in custom menu portfolio page’ is closed to new replies.