To solve that problem you could change the outer box to position relative
code: |
#outer_box{
width: 90%;
padding: 2px 10px 10px 10px;
margin: 10px 0px 0px 0px;
margin-left: auto;
margin-right: auto;
background-color:#FFFFFF;
position:relative;
}
|
that way all of the elements inside of it, when positioned absolutely, will positioned relative to #outer_box, not the screen. This seems to elimination any browser differences between IE and FF. Your number need to be changed a bit tho. These work:
code: |
.menu_first{
position: absolute;
right: 30px;
top: 15px;
}
|