Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS how to fixed left menu , head menu and have slide horizontal bar in right content box? Re: how to fixed left menu , head menu and have slide horizontal bar in right content box?

#83529
furrball1383
Member

from your explanation it seems like you simply want to have the header and left menu stay in position while the content area is scrollable horizontally. if so, its just a matter of positioning your images within your content div and then add these two lines to your css for the div



overflow-x: scroll;
overflow-y: hidden;

I’ve set y to hidden and x to scroll but if you don’t want to specify both in case you may need your y axis scrolling later then use:



overflow: auto;