|
Why do you have them both set to position:relative with z-indexing ? This is not the best way to do what you want, in fact, IE has a nasty z-indexing bug with relative positioning, so getting rid of that is a good idea.
If you want the divs side by side, float them both left, they should align at the same level under the normal document flow. Adjust as needed with margins and padding, just do NOT put a left margin on a left float and vice versa as you will run afoul of yet another IE 6 bug. It's fixable, but if you can avoid it completely that's even better.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|