travich:
This ALMOST works in a content page -- the only thing is that it stretches outside of the content area, I am just not sure why. I am guess it's thinking it needs to stretch from that position plus the missing size of the menu, etc. If anyone knows I'd love to hear.
hi, i had your same problem having the image over windows borders, this was because i had set 100% on the image without inserting this tag inside my <div> in practice combining html and style we are telling to the browser something like this:
the "paint area" is 100% of the window are (visible part of it) inside this limit make a <div> wide 100% and inside this the image, while i set 100% to my image that doesnt pass my right border the image height in calculated in proportion and it can pass the lower border, to aavoid scrollbars, hide what is supposed to pass the borders: overflow:hidden;
if u have menu the code should be adapted, try to paste the example as shown to see if it is working and my solution is not limited only by the browser, if u can post some code maybe would be more easy to manage it out.