Preventing objects from moving when I change browser size..

I’m coding a webpage right now and I’m using CSS. I’ve specified an images size and heigth. Unfortunately, when I minimize the browser or make it smaller than max, it moves the object and pushes everything down. Is there any way I can make object and everything else on my page stay the same size no matter what the browser size is? Ideally, I’d want them to just scroll left or right if they need to see something they can’t currently see.

Does this make sense?

Are you using a liquid or an elastic layout? Got a URL to see?

A nasty solution is to use a clear .gif of the minimum width you want the page to keep. Let’s say your layout breaks at less than 600 pixels, then you have a clear 600x1 .gif that holds the page stretched. Quick and dirty.

Or keep the page footprint low and do it all in CSS by adding width: 600px; to the page container.

never thought about making the container a px size itself!