• he,

    ive been working on the http://www.domex.nu website and i but a menu left and made hyperlinks of them but the problem is that they changed color now and i looked in style.css but i cant find anything that changes there color i just want them to have there original color without any effects or hover color.

    thank you for reading

Viewing 5 replies - 1 through 5 (of 5 total)
  • You will find them here:

    http://domex.nu/wp-content/themes/psd2css/psd2css.css

    a:link {
    color:#FF8888;
    }

    and

    a:hover {
    color:#FF0000;
    }

    Get Firefox and then the Firefox addon Firebug. You can then click anywhere in your site and see what piece of the css influences that piece of your site and you can even make changes but not save them, so it is safe to practice.

    Thread Starter bbrando

    (@bbrando)

    Ah yes i see thank you very much HenkHolland, do you also know how i can show the color i originally gave it? because now it still changes the color to black and hover(rollover) red is there a way i can make the link color invisible so they get the normal color i gave them?

    Hi Bbrando,

    ….Ah yes i see thank you very much HenkHolland, do you also know how i can show the color i originally gave it? because now it still changes the color to black and hover(rollover) red is there a way i can make the link color invisible so they get the normal color i gave them?

    I do not know what color you gave it originally (I see them as blue now in IE7 and Firefox; then red for hover and puple for visisted).
    These are in your PreferenceStyleSheet (wherever that is; in the theme options maybe) looking like this:

    *|*:-moz-any-link:active {
    color:#EE0000;
    }
    *|*:visited {
    color:#800080;
    }
    *|*:link {
    color:#0000FF;
    }

    In the order red, purple, blue so say you want them always blue change all these values to: #0000FF (but, probably in your themes settings and not directly in a css file).

    Thread Starter bbrando

    (@bbrando)

    No i found that they are in Style.Css the only problem is that i have 2 kinds of colors in the link the purple/pink color from the site and white i try to make these colors stay there with no roll over or visited

    only problem i have is when i change the color they all change to the same color but the bold letters should be purple/pink and the normal ones should be white

    thanks again henk your being a big help 🙂

    Thread Starter bbrando

    (@bbrando)

    Ive found out from another forum that i could change the text with

    a.white, a.white:hover { color: #FFF }
    (inside Stylesheet)

    and assigning it like this

    <a class="white" HREF="Link Url">Link Text</a>

    (inside Index.php)

    only problem is that its only doing the hover does anyone see an option to make the normal state like this too?

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

The topic ‘trying to change hyperlink color’ is closed to new replies.