This seems like a really trivial question, but I just can’t figure it out and any help would be much appreciated. I would like the colour of the text for the Other Info box to be blue, to match in with the rest of the page, but the default is small red text. Originally I just added some html into the Other Info Question prompt box:
<font size=”2” color=”blue”>If adding your own front of card greeting, enter the text below:</font>
This seemed to work okay and gave me the look I wanted. You can see this at http://www.cardsatyourfingertips.co....ctic_Life.html. However, using this method, when you send a confirmation e-mail or print an invoice the html is printed as well, which is no use.
I then decided to try to do it properly and added some new code to the css file:
.sfactregular{
font-size:12px;
color:"Blue";
}
and changed the code in Act_ProductLine to:
<span class="sfactregular">NETQUOTEVAR:OTHERINFOPROMPT</span>
This changes the font size correctly but I cannot get the red text to change to blue. You can see this here:http://www.cardsatyourfingertips.co....talog/Two.html
Am I missing something stupid here?
Thanks,
<font size=”2” color=”blue”>If adding your own front of card greeting, enter the text below:</font>
This seemed to work okay and gave me the look I wanted. You can see this at http://www.cardsatyourfingertips.co....ctic_Life.html. However, using this method, when you send a confirmation e-mail or print an invoice the html is printed as well, which is no use.
I then decided to try to do it properly and added some new code to the css file:
.sfactregular{
font-size:12px;
color:"Blue";
}
and changed the code in Act_ProductLine to:
<span class="sfactregular">NETQUOTEVAR:OTHERINFOPROMPT</span>
This changes the font size correctly but I cannot get the red text to change to blue. You can see this here:http://www.cardsatyourfingertips.co....talog/Two.html
Am I missing something stupid here?
Thanks,
Comment