1
Hi,
I'm stuck on changing the appearence of the 'th' tag in my site.
I've changed in the css (previous style is commented out):
th {padding: 2px;color: #000000 /* #fff */;background: #FFFF33 /* #48b */;font-family: Verdana, Arial, Helvetica, sans-serif;vertical-align: middle;}
yet it is still showing the previous stlye!
I've made other changes in the css with no problem.
You can see the example in:
http://www.area10.info/modules/archcontact/The top bar of the table is still blue, when I'm trying to change to yellow.
The template of that page is below:
<link href="../../../../xoops-2.2.3a-Final/html/themes/xmt/css/styleNN.css" rel="stylesheet" type="text/css"> <{$contactform.javascript}>
<form name="<{$contactform.name}>" action="<{$contactform.action}>" method="<{$contactform.method}>" <{$contactform.extra}>>
<br>
<table class="outer" cellspacing="1" align="center">
<tr>
<th style="text-align:center;" colspan="2"><{$ac_archcontact}>th>
tr>
<{foreach item=element from=$contactform.elements}>
<{if $element.hidden != true}>
<tr>
<td class="head"><{$element.caption}>td>
<td class="<{cycle values="even,odd"}>"><{$element.body}>td>
tr>
<{else}>
<{$element.body}>
<{/if}>
<{/foreach}>
table>
form>
Any advice?