View Full Version : div layer placement


Ruriko
04-05-2006, 10:23 AM
This is my layout http://www.geocities.com/silver_senshi_venus/Ragnarok/index.html
You see that little image below the links? the image moves to a different spot in a different resolution. Is there a way to make it stay there in all resolutions?

uday
04-05-2006, 12:07 PM
you can nest it in the same parent that everything else is in. or, if you are referencing a point on page for the rest of the div elements, reference the same point for the selector containing that picture.

J to the izzosh
04-06-2006, 05:09 AM
Actually, it's that image which is staying in the same spot; the rest of your page is moving. The image, or rather, the <div> element containing it, is positioned absolutely, so it will always be 199 pixels from the left of your page and 342 pixels from the top of your page. Just remove the absolute positioning and put the code for the image link in the same container as the rest of your content.