Log in

View Full Version : Got a second?


Scarab
11-25-2005, 04:08 AM
Ok, for the life of me I can't figure out how to get the footer to stretch 100% width of the screen while the contents remain slightly narrower. The header does it no issues, but the footer for some reason sizes like it's part of main body which is narrowed.

Is there something I'm missing here? I know it should be simple, and I'm probably just tired, but, I could really use a little help here.

Thanks in advance.

peterska2
11-25-2005, 10:26 AM
In the footer template

FIND

<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="$stylevar[outertablewidth]" class="page" align="center">

REPLACE WITH

<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" class="page" align="center">

It should work. I haven't tested it.

DannyMilner
11-25-2005, 10:42 AM
You will have to change the css so you don't have any margin.

Scarab
11-26-2005, 09:50 AM
-Update-

Turns out, I didn't close a <td> tag and it buggered up the whole shabang. All better now.

Thnx for your help.