View Single Post
  #5 (permalink)  
Old 09-25-2007, 06:40 AM
westmatrix99 westmatrix99 is offline
Junior Member
 
Join Date: Sep 2007
Posts: 21
westmatrix99 is on a distinguished road
Question

Thanks for replying, but it's the "height" not "width" that I need to set.
Here is the css that I mad some changes to as these are the culprits.
PHP Code:
html {
 
/*overflow:hidden;*/
}
body{
background-color#ffffff;
font-familytahomaarialsans-serif;
font-size10px;
text-aligncenter;
background-position0px 0px;
margin0 auto;
padding:0;
height:100%; /*this is what I need*/
border:none;
background-imageurl(../images/background.gif);
overflow:auto;
}
#container {
margin0px auto;
width780px;
border-color#000000;
border-width0px 1px 1px;
border-stylesolid;
}
#categories{
margin-bottom1px;
padding1px 1px 1px 0px;
border-color#000000;
border-width1px 1px 1px 0px;
border-stylesolid;
height:100%!important/* real browsers */
height:100%; /* IE6: for min-height*/
min-height:100%; /* real browsers */
position:relative;
}
.
categories{
margin-bottom1px;
padding1px 1px 1px 0px;
border-color#000000;
border-width1px 1px 1px 0px;
border-stylesolid;
height:100%!important/* real browsers */
height:100%; /* IE6: treaded as min-height*/
min-height:100%; /* real browsers */
position:relative;

Cheers
West
Reply With Quote