Forum Moderators: not2easy
Ex:
<p class="f6">
Product Description <font color="#FF0000">$My.Price</font>
My class definition for "f6" looks like this:
p.f6 { font-family: Eras Light ITC;
font-size: 12pt;
font-weight: bolder }
A new class for Color RED seems right, but how to insert it in the same line of text?
b.prices { color: #FF0000 }
So I just learned something here, but still a bit confused on what it was...
I assume then I could take " b.prices { color: #FF0000 } "
and make it:
b.prices { font-style: normal;
font-weight : normal;
font-family: Arial Black;}
...which would be an override of the <b> attribute, but allow me to change text mid-stream at my leisure. Or a convienient way to return someday to turn off all my bold text. This is starting to get interesting.