View Full Version : How to correct this logo issue ?
ivanstanchev
03-27-2008, 04:01 AM
have a look of my forum - http://soccer-union.com
There is some small line (i cant say the exact color,it is too small) at the top of the logo.This line is only at the right side.I mean ,my logo has 2 parts.The first one ,where is my url is ok,the second one,that contains only background has this line on its top.Could you please have a look.I am total noob.
--------------- Added 1206617077 at 1206617077 ---------------
Anyone ?
Opserty
03-27-2008, 10:36 AM
Find:
<!-- logo -->
<a name="top"></a>
<center>
<table style="background-image: url(images/misc/headbg.gif);" align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody><tr>
<td align="left" valign="top"><a href="http://soccer-union.com/"><img src="images/misc/head_left.gif" alt="" border="0"></a></td>
<td align="right" valign="bottom"><img src="images/misc/head_right.gif" alt=""></td>
</tr>
</tbody></table>
</center>
<!-- /logo -->
In your header template.
Change valign="bottom" to valign="top"
snakes1100
03-27-2008, 11:10 AM
Actually the filler image does have a gray line across the top of it.
I'd also remove the table bg image and the td align right and just make a css call to the background filler image instead.
ivanstanchev
03-27-2008, 12:59 PM
Actually the filler image does have a gray line across the top of it.
I'd also remove the table bg image and the td align right and just make a css call to the background filler image instead.
How do you do this ?
snakes1100
03-27-2008, 02:20 PM
1. fix your filler image and remove the gray line at the top of it.
2. Use something like this in the template.
<!-- logo -->
<a name="top"></a>
<table class="header" width="$stylevar[outertablewidth]" border="0" 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>
</tr>
</table>
<!-- /logo -->
3. Do something like this for the css bg call instead of using a call in the table or with another td, put in as another added css call in the style manager.
.header {
background:url(/forums/images/logo/bg.jpg)
top repeat-x;
}
ivanstanchev
03-28-2008, 06:22 PM
The line is still there :( .Is there anyway to remove it.It scares members.Since it has appeared i have only 4 registration in 2 days,since i had 6 per day on average.
snakes1100
03-28-2008, 06:50 PM
You didn't remove this part from the header template, its not needed, thats why i said use the css call instead
<td align="right" valign="bottom"><img src="images/misc/head_right.gif" alt="" /></td>
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.