simonchristieis
Programmer
I have a css include file.
.baseText {font-family: arial, verdana, sans-serif; font-size: 16px; color:FFFFFF; text-decoration: none;}
.boldText {font-weight: 900; }
.darkText {font-family: arial, verdana, sans-serif; font-size: 12px; color:000080; text-decoration: none;}
and I am using in these tags
<td>
<a class="baseText boldText"><%=rs("eventName"
%></a>
</td>
<td colspan="2" class="baseText boldText">
<%=rs("eventDate"
%>
</td>
the problem is that the <td> tag shows black text ??
anyone know why ?
Simon
.baseText {font-family: arial, verdana, sans-serif; font-size: 16px; color:FFFFFF; text-decoration: none;}
.boldText {font-weight: 900; }
.darkText {font-family: arial, verdana, sans-serif; font-size: 12px; color:000080; text-decoration: none;}
and I am using in these tags
<td>
<a class="baseText boldText"><%=rs("eventName"
</td>
<td colspan="2" class="baseText boldText">
<%=rs("eventDate"
</td>
the problem is that the <td> tag shows black text ??
anyone know why ?
Simon