PDA

View Full Version : How can I change the size of this margin?


ctimes
12-20-2009, 10:59 PM
https://vborg.vbsupport.ru/external/2009/12/65.jpg

I just want to lower the logo a bit and can't seem to find in the CSS where to change this.

Any help would be appreciated, If you could also quickly tell me how you found it that would be great as I have spent about three hours so far trying to figure it out :)

Thanks in advance

Hell Bomb
12-22-2009, 12:53 AM
It seems as there was no starting table info in your header. So i added that and on the <td> tag i added the value valign="bottom" which will tell it to align to the bottom of the table cell.

Try this:

<!-- logo -->
<a name="top"></a>
<table cellpadding="0" cellspacing="0" border="0" width="$stylevar[outertablewidth]">
<tr>
<td valign="bottom" align="left"><a href="index.php?"><img src="http://crunktimes.com/ct/techforums/misc/crunk.png" border="0" padding-left="50px" alt="Crunk Times Forums" /></a></td>
<td align="right" id="header_right_cell">


</td>
</tr>
</table>
<!-- /logo -->

ctimes
12-22-2009, 04:08 PM
Thanks a bunch!