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.
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).
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 🙂
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?