For some reason I can't get this style to work.
I have put a table on a page (doing it in html) with the following class attached to the tr and th fields.
<tr class="bannerHead">
<th class="bannerRow">Size</th>
<th class="bannerRow">3'</th>
<th class="bannerRow">4'</th>
<th class="bannerRow">5'</th>
<th class="bannerRow">6'</th>
<th class="bannerRow">7'</th>
</tr>
I then have the following custom code added to my style.css sheet
/* Custom Style for site
-------------------------------------------------------------- */
tr.bannerHead {color: #fff; height: 10px; margin: 0px;}
th.bannerRow {background-color: #0460b7; text-align:center;}
no matter what I do I can't get the page to see the style and apply it.
been at this for ages and just can't see what the problem is. I also added a custom style sheet to see if that would help but no luck.
Any one help??????