Hey guys, just a quick question from moi.
I'm using html in my notices to display images etc. - is there a way I can remove the border/padding from the edges? it's really annoying me and doesn't look nice for what I want to achieve.
Any help would be greatly appreciated.
Greg
--------------- Added [DATE]1205704164[/DATE] at [TIME]1205704164[/TIME] ---------------
Solved the problem on Vbulletin.com
Thanks to Vtec44 from there.
Quote:
In your navbar template, search for
Code:
Code:
<br />
<if condition="$show['notices']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead">$vbphrase[notices]</td>
</tr>
<tr>
<td class="alt1">$notices</td>
</tr>
</table>
<br />
</if>
Change cellpadding and cellspacing to 0 and see what it does.
|