[RESOLVED] Style Sheet Problem in VS 2003
Hi,
Wonder if someone can help me with a stylesheet problem i'm having in VS2003.
I have created a stle and placed it in the default style sheet of my asp.net application. When i try to set the CssClass of one of my labels to the new Style it doesn't change the look of the label.
The style is as follows:
Code:
S_HEADER
{
font-weight: bold;
color: white;
font-family: Tahoma;
background-color: navy;
}
I set the CssClass to S_Header and it does nothing.
Anyone got any ideas as to why this is so?
TIA
Re: Style Sheet Problem in VS 2003
Ooooops,
Appears i have to prefix the name with a full stop before this will work. named the style .S_Header and it works fine now.