Click to See Complete Forum and Search --> : CCS scroll bars


kproc
04-07-2006, 10:14 AM
Hi,

I'm having a harding getting my web page to display correctly on computer that use larger screen resulutions
.

My page is setup as a three column.

for some reason instead of creating scroll bars to display the page it shoots my left column to the bottom of the page,

any ideas how I can prevent this


http://www.tomorrownextweek.com/css/main.css

For example, my computer at work displays webdevelopers page with a bottom and right scroll bar.

hedlikeahole
04-07-2006, 10:54 AM
you need to set the width of each column in percent.

e.g

#leftcolumn
{
width:20%;
}

#centercolumn
{
width:60%;
}

#rightcolumn
{
width:20%;
}

this will allow the columns to shrink and expand dependent on the size of the browser window