This is a CSS I have:
I am using it here:
The CSS is not being recognized. I do not get any of the style settings in the span . But, as a test, I added the selector p to the CSS and changed where I use it to be in the p
and
Now, once the tage name is specified in the selector, I do get the blue color. But I still don't get the right font nor the right font size.
What is wrong with my CSS and /or how I am using it? If I would get the rest of the CSS using it as p changes I would keep it that way and not bother with the span.
Thanks
Code:
.Change
{font-weight:bold;
color:blue; font-size:19px;
font-family:"Typo Upright BT", "Times New Roman", serif; border-style:none; PADDING-BOTTOM: 0pt;}
Code:
<P class=Normal align=Left><A href="/MyPage10.html"><IMG src="images/Page10.gif"
border="0" alt="Go to Page10" height="40"></a><br>
<span class=Change>Page Added 1/15/09</span></p>
The CSS is not being recognized. I do not get any of the style settings in the span . But, as a test, I added the selector p to the CSS and changed where I use it to be in the p
Code:
p.Change {font-weight:bold;...
Code:
<P class=Change align=Left><A href="/MyPage10.html">...
Now, once the tage name is specified in the selector, I do get the blue color. But I still don't get the right font nor the right font size.
What is wrong with my CSS and /or how I am using it? If I would get the rest of the CSS using it as p changes I would keep it that way and not bother with the span.
Thanks