[thelist] preventing a CR in when using different colours in aparagraph

Joshua Olson joshua at waetech.com
Thu Jul 3 10:46:39 CDT 2003


----- Original Message ----- 
From: "David Turner" <david.turner at synergy.tv>
Sent: Thursday, July 03, 2003 11:28 AM


> big thanks to all who have spent time on this...
>
> the text now appears on one line, but i cannot get the font colour to
> change. i wonder if this is because the text is inside a form inside a
> table.

Getting closer.

Your css definition is:

div.telephoneText

This means that it only applies when the class telephoneText is applied to a
DIV.  Since you are using a SPAN this rule will not apply:

<div class="blackText"> Fill in this form or phone
       <span class="telephoneText"> 0113 123456 </span>
       for more information</div>

Make the rule ".telephoneText" (sans the div) and it should work:

.telephoneText
 {
  font-family: Verdana, Arial ;
  text-align: left ;
  color: white ;
  font-size: 10px
 }

Good luck,

<><><><><><><><><><>
Joshua Olson
Web Application Engineer
WAE Tech Inc.
http://www.waetech.com
706.210.0168



More information about the thelist mailing list