I'm having problems setting my page layout. Is there anyway to set your page to display the same with any resolution. What I'm having problems with is at lower resolutions the page is huge and you have to use a bottom scroll bar to see the site. At higher resolutions the site looks great.
This is the code I have in my rectangle_top.tpl
Code:
{* $Id: rectangle_top.tpl,v 1.25 2006/02/07 08:09:51 max Exp $ *}
<table class="Container" cellpadding="0" cellspacing="0" width="{$width|default:"80%"}" align="center">
<tr><td class="Container">
I've tried to set it to px as well but it does not help with the scrolling problem.
I also currently have
Code:
Content enviroment styles
*/
TABLE.Container { width: 80%; margin-left: auto; margin-right: auto; background-color: #FFFFFF; }
TD.Container {
VERTICAL-ALIGN: top;
HEIGHT: 90%;
}
TD.Container {
VERTICAL-ALIGN: top;
HEIGHT: 90%;
}
TD.Container {
VERTICAL-ALIGN: top;
HEIGHT: 90%;
}
/*
I've tried removing some of that in hopes that maybe the 2 were conflicting with each other.
Any suggestions on how to fix this? Or is it even possible?