Log in

View Full Version : how can i take that out!!


Michael.A
05-28-2009, 07:29 AM
hi there,
how can i take that blue line around my header out??

http://coderz4life.net/forums/forum.php

thanks,,

Seven Skins
05-28-2009, 08:18 AM
Add border="0" in the code of header image.

Michael.A
05-28-2009, 08:22 AM
thanks,
what about the img on the back of the header.
here is my header code!!

<!-- logo -->

<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" style="background: url($stylevar[imgdir_misc]/header_repeat.gif) repeat-x top left" cellpadding="0" cellspacing="0" align="center">
<tr>
<td width="100%" height="27" colspan="2" valign="top"><img src="$stylevar[imgdir_misc]/header_repeat.gif" border="0" alt="" /></td>
</tr>

<table border="0" width="$stylevar[outertablewidth]" style="background: url($stylevar[imgdir_misc]/dark_vb_bg.gif) repeat-x top left" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="$stylevar[left]"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img alt="coderz4life" src="http://coderz4life.com/forums/-images-/cod4life.gif" width="100%" height="190"></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 -->

help me code this the right way,

Lynne
05-28-2009, 01:23 PM
You didn't add border="0" in the image tag like Seven_Skins said to do in here:
<img alt="coderz4life" src="http://coderz4life.com/forums/-images-/cod4life.gif" width="100%" height="190">

Seven Skins
05-28-2009, 03:21 PM
I think this should be your header code:

<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" style="background: url($stylevar[imgdir_misc]/dark_vb_bg.gif) repeat-x top left" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="$stylevar[left]"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img alt="coderz4life" src="http://coderz4life.com/forums/-images-/cod4life.gif" width="100%" height="190" border="0"></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 -->



And this should be your top navbar code:

<!-- nav buttons bar -->
<div class="tborder" style="padding:1px; border-top-width:0px">
<table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
<tr align="center">
<td class="vbmenu_control"><a href="forumdisplay.php?f=6">PS2</a></td>
<td class="vbmenu_control"><a href="forumdisplay.php?f=8">PSP</a></td>
<td class="vbmenu_control"><a href="forumdisplay.php?f=7">PS3</a></td>
<td class="vbmenu_control"><a href="forumdisplay.php?f=9">XBOX</a></td>
<td class="vbmenu_control"><a href="forumdisplay.php?f=76">Xbox 360</a></td>
<td class="vbmenu_control"><a href="forumdisplay.php?f=10">Computer</a></td>
</tr>
</table>
</div>
<!-- / nav buttons bar -->



PS. Save you header before editing.

.

--------------- Added 1243527866 at 1243527866 ---------------

Hmmm .. just checked your header image is 11.5mb ... thats why your site is real slow. You definatly need to reduce the size of header image.

.