when you have trouble figuring out what you need to apply a color to...I usually view the source and see if DNN is making it a straight text thing, or what kind of element is wrapping it. This way, if say it's just in a <span> tag in your <div id="wrapper">, then you could do:
#wrapper span
{
color:blue;
}
but if it's a link, you need to use I think
using your class as an example:
.SkinObject a /* this is the <A> tag
{
font-weight: bold;
font-size: 8.5pt;
color: White;
font-family: Tahoma, Arial, Helvetica;
text-decoration: none;
}
There are also things called "psudo" classes ( I think they are classes...whtever)
so you can do things like:
.SkinObject a :visited /* the :visisted part says...if it's an <a> tag...or..more specifically so it makes sense <a href="blahblalbah> sometext </a> */
{
font-weight: bold;
font-size: 8.5pt;
color: White;
font-family: Tahoma, Arial, Helvetica;
text-decoration: none;
}
.SkinObject a:hover /*if the mouse is hovering over it */
{
font-weight: bold;
font-size: 8.5pt;
color: White;
font-family: Tahoma, Arial, Helvetica;
text-decoration: none;
}
and so on...google for "psudo class" or element or something, and throw a CSS into your google search with it..put psudo class or psudo element in quotes though so it looks for them both in order.
or A:hover i suppose will generate some results.