I'm trying to make my site look the same in Mozilla as well as IE.
I've tried z-index and it looks like the only way I can get anything to align is by absolute positioning. And it takes me forever to move my boxes, and when I create another box, then all the boxes move all over the place and I have to position everything all over again at a different position. :td:
Is it: (all boxes I try to move are divs)
.box
{
position: fixed;
left: 75px;
top 25px;
}
Is it this code that's used to z-index or can I use absolute positioning.
If moving the css boxes only works in a fixed position. Then I can't use fixed positioning. It messes up in both mozilla and ie.
The only thing I can think of to use is:
.box
{
position: absolute;
left: 75px!important;
top 25px!important;
left: 95px;
top 45px;
}
I found out the (!important) tag keeps the positioning I want in Mozilla, and the extra left and top is for IE positioning (to keep the same look as in Mozilla).
I haven't tried the (!important) code though, I know it would be time consuming. Is there ANY other way to position css div boxes that won't cause the other div boxes to move along with it, or worse completely move them all?
Thank You much is very appreciated. Thank you for your time. :tu:
I've tried z-index and it looks like the only way I can get anything to align is by absolute positioning. And it takes me forever to move my boxes, and when I create another box, then all the boxes move all over the place and I have to position everything all over again at a different position. :td:
Is it: (all boxes I try to move are divs)
.box
{
position: fixed;
left: 75px;
top 25px;
}
Is it this code that's used to z-index or can I use absolute positioning.
If moving the css boxes only works in a fixed position. Then I can't use fixed positioning. It messes up in both mozilla and ie.
The only thing I can think of to use is:
.box
{
position: absolute;
left: 75px!important;
top 25px!important;
left: 95px;
top 45px;
}
I found out the (!important) tag keeps the positioning I want in Mozilla, and the extra left and top is for IE positioning (to keep the same look as in Mozilla).
I haven't tried the (!important) code though, I know it would be time consuming. Is there ANY other way to position css div boxes that won't cause the other div boxes to move along with it, or worse completely move them all?
Thank You much is very appreciated. Thank you for your time. :tu:





