PDA

View Full Version : table width


chriscara
03-10-2007, 03:40 AM
I have changed the Main Table Width from 100% to 800px, it looks fine in IE but in Safari it is sill going to 100%. Can anyone help me to make it look right in Safari?
Thanks,
Chris

CyberAlien
03-10-2007, 04:06 AM
Remove "px" from it.

chriscara
03-10-2007, 04:15 AM
Thanks, that worked, but now the header is not centered, it's aligned left.

CyberAlien
03-10-2007, 04:20 AM
In "header", "footer" and "spacer_open" templates find this:width="$stylevar[outertablewidth]"and replace with this:style="width: $stylevar[outertablewidth]; margin 0 auto;"
and add "px" back.

In spacer_open you'll also find this:<div class="page" style="width:$stylevar[outerdivwidth]; text-align:$stylevar[left]">replace that line with this:<div class="page" style="width:$stylevar[outerdivwidth]; margin 0 auto; text-align:$stylevar[left]">

chriscara
03-10-2007, 10:28 PM
thanks.