Hi, I have a simple question, how to prevent a div to be covered by another div?!? When I use AJAX the footer div of my page cover the rendered div, how should I prevent it? I used both: position:fixed; and the position:relative; The first cover some text from the bottom of page and the other does not work always. Thanks in advance, - H
Just use ''z-index:20;'' for example in youre stylesheet for the div. The higher the number the closer the object is to you on the screen. So z-index:100; floats over every object as long as you don''t have a higher index. Hope this helps. -- Posted via http://www.ruby-forum.com/.