PDA

View Full Version : Removing vBulletin logo removes <td> borders


rgf207
08-18-2008, 02:09 PM
I am trying edit the header template to remove the vbulletin logo in the upper left corner. When I remove that table, it removes all <td> borders in my forum display so there are no lines between the different table cells. Is there a way to remove this logo without removing the table cell borders in the forum display

here is what the original table looks like

<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="$stylevar[left]"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
<td align="$stylevar[right]" id="header_right_cell">
<if condition="$ad_location['ad_header_logo']">$ad_location[ad_header_logo]<else />&nbsp;</if>
</td>
</tr>
</table>
<!-- /logo -->

<!-- content table -->
$spacer_open

$_phpinclude_output

$ad_location[ad_header_end]here is what the modified one looks like

<!-- logo -->
<a name="top"></a>

<!-- /logo -->

<!-- content table -->
$spacer_open

$_phpinclude_output

$ad_location[ad_header_end]


I've included the image of my forums. You will notice there is no border for the table cells

cheat-master30
08-18-2008, 02:15 PM
You could always just leave the image setting blank in the style manager...

rgf207
08-18-2008, 04:06 PM
You could always just leave the image setting blank in the style manager...
Thank you. I didn't even know that section existed. I had no idea you could change those variables.

--------------- Added 1219086798 at 1219086798 ---------------

Even when I removed that graphic from the style manager, it still removes the table cell borders. Any ideas why

Attitude5ire
08-18-2008, 07:19 PM
Hmm.. check your style variables. Inner border width. Just make sure it aint 0..
but you really shouldnt have this issue just by removing a table code.