Hi,
I have a div, which contains another div, which contains a image, like so:
<div class="div1">
<div class="div2">
</div>
</div>
.div1-le has the following CSS:
height:100%;
width:100%;
margin:0;
padding:0;
position:fixed;
This means that .div1 is the same size as the browser. Now, what I need, is .div2 to be X number of pixles from each side of the browser.
Thanks!