keeping layer position fixed on resize

liunx

Guest
Hi i have a table and within one of the <td> tags i have a layer. The problem is that of positioning. When the broswer is opened in its full size the posotioning is fine. However when i resize the broswer window the layer moves according to how much i rezised the browser.

How do i fixed this so the layer stays in its position no matter what..

thanks for your help..


cheersTry using this:

{
position:relative;
left:100px;
top:150px;
}

<!-- m --><a class="postlink" href="http://www.w3schools.com/css/css_positioning.asp">http://www.w3schools.com/css/css_positioning.asp</a><!-- m -->
 
Back
Top