PDA

View Full Version : Footer CSS Question (should be easy)


Spencer F.
12-06-2004, 03:55 AM
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" class="page" align="center">
<tr>
<if condition="$show['quickchooser']">
<td>
<select name="styleid" id="ressel" onchange="switch_styleid(this)">
<optgroup label="$vbphrase[quick_style_chooser]">
$quickchooserbits
</optgroup>
</select>
</td>
</if>
<td class="tfoot" align="$stylevar[right]">
<div class="smallfont">
<center>
<a href="$vboptions[contactuslink]">$vbphrase[contact_us]</a> |
<if condition="$vboptions['archiveenabled']"><a href="archive/index.php">$vbphrase[archive]</a></if>
</center>
</div>
</td>
</tr>
</table>

How do I get the background cell color of "Contact Us | Archive" to go away?

Zachery
12-06-2004, 04:26 AM
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" class="page" align="center">
<tr>
<if condition="$show['quickchooser']">
<td>
<select name="styleid" id="ressel" onchange="switch_styleid(this)">
<optgroup label="$vbphrase[quick_style_chooser]">
$quickchooserbits
</optgroup>
</select>
</td>
</if>
<td class="tfoot" align="$stylevar[right]">
<div class="smallfont">
<center>
<a href="$vboptions[contactuslink]">$vbphrase[contact_us]</a> |
<if condition="$vboptions['archiveenabled']"><a href="archive/index.php">$vbphrase[archive]</a></if>
</center>
</div>
</td>
</tr>
</table>

How do I get the background cell color of "Contact Us | Archive" to go away?
Remove class="tfoot" ;)