Hey my pages look good, but while testing I found that users with older squarish monitors and low screen resolution push the pages' right column down underneath the main container. I need a solution to accommodate that. I was thinking of forcing things to overflow to the right and having horizontal scrolling appear. Is this workable or is there a better way?
Things are nested on the pages like this:
It is the rightnav container that is being pushed under the main container.
Thanks
Code:
#container{
width:100%;
margin:15px 0px 0px 10px;
}
#topbar{
width:auto;
display:block;
vertical-align:central;
height:60px;
text-align:center;
background:#FFFFFF url(../PNGfiles/compass.png) center no-repeat;
}
#main{
width:58%;
margin-right:20px;
float:left;
text-align:center;
border-left-style:solid;
border-left-color:#274D7E;
border-right-style:solid;
border-right-color:#274D7E;
}
#main_left{
width:45%;
margin-left:10px;
float:left;
text-align:center;
}
#main_right{
width:45%;
margin-right:10px;
float:left;
text-align:center;
}
#navbar{
width:auto;
display:block;
height:28px;
border-bottom:#274D7E solid;
border-bottom-width:9px;
}
#leftnav{
width:150px;
margin-right:20px;
float:left;
font-size:1.0em;
}
#rightnav{
width:300px;
float:right;
font-size:.75em;
}
Things are nested on the pages like this:
Code:
<div id="container>
<div id="topbar">
</div>
<div id="navbar">
</div>
<div id="leftnav">
</div>
<div id="main">
<div id="main_left">
</div>
<div id="main_right">
</div>
</div>
<div id="rightnav">
</div>
</div>
It is the rightnav container that is being pushed under the main container.
Thanks