|
You have the photo div floated and absolutely positioned. The absolute positioning is causing the photo div to stay fixed regardless of screen size. There are two ways to fix this.
Option 1: Get rid of the "float:right". Remove "left:650px" and replace that with "right:20px" (you might have to adjust the px amount to get it positioned where you want it.) Now, your photo div will stay to the right of the screen even in larger monitor resolutions.
Option 2: get rid of "position:absolute", "left:650px", and "top:50px". Add some right and top margin to nudge the div around where you want it to show up. That div will stay to the right of the screen in larger monitor resolutions with this option too.
|