PDA

View Full Version : How do I get rid of this space?


Comalies
02-26-2007, 10:42 PM
Hey,

How do I get rid of this space?

http://img157.imageshack.us/img157/9536/spacecp8.jpg

Thanks!

Comalies
02-26-2007, 11:21 PM
I didn't see anything...

Aken
02-27-2007, 12:16 AM
Check to see if there is a border or margin given for the Page Background on your CSS page. If that fails, check to see if there is anything in your header template that might cause a gap - table code, page breaks, borders, etc...

It's hard to say for sure without seeing your style admin, but those are good places to start.

Comalies
02-27-2007, 01:39 AM
Check to see if there is a border or margin given for the Page Background on your CSS page. If that fails, check to see if there is anything in your header template that might cause a gap - table code, page breaks, borders, etc...

It's hard to say for sure without seeing your style admin, but those are good places to start.

Thanks, I'll check the CSS thing.

The weird thing is the logo on the left side goes all the way down and touches the next table...hmm.

Aken
02-27-2007, 08:56 AM
Probably something in the HTML by the image, or the image itself. May want to double check to see if there is a small transparent gap on the bottom.

Princeton
02-27-2007, 01:05 PM
if it's not a style issue, it could be a cellspacing, cellpadding, vertical align issue

it's really hard to help without seeing the site

Comalies
02-27-2007, 03:43 PM
Here's the code for header

<!-- 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]">
<a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="images/misc/bandtop.gif" border="0" alt="$vboptions[bbtitle]"
/></a></td>

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


<!-- content table -->
$spacer_open

$_phpinclude_output

Princeton
02-27-2007, 03:45 PM
your images do not have any width/height attribute so it's hard to tell

try...
add valign="bottom" to cell and see what happens

Comalies
02-27-2007, 08:26 PM
Worked...thank you!