Align and resizing question
Hi all, I've been playing around the Google maps API and I'm having some trouble with the css.
I'm trying to align the map to the right side of the browser window with 200px on the left side for some text.
Here is the css part:
#map {
position: absolute;
top: 85px;
left: 200px;
right: 0px;
height: 480px;
width: 100%;
}
Right now the left and right positioning is where I want it, but the width is 100% of my computer monitor (1200px). I want to get rid of the scroll bar at the bottom and have it adjust automatically whenever I resize the window.
Any suggestions would be greatly appreciated. I've already spent the whole day trying to figure this one detail out and it's driving me crazy.
|