CharlotteL
IS-IT--Management
I'm having a real problem positioning a nested layer.
I have 4 layers:
Wrapper - wraps the whole page
Navigation - speaks for itself
Main - main page body
Logo - a logo in the main page
My logo however, is displayed too far to the left when I browse it, but it's displayed correctly in dream weaver.
My css is below:
#Wrapper {
margin-right: auto;
margin-left: auto;
left:74px;
top:27px;
width:750px;
height:594px;
z-index:1;
background-color: #FFFFFF;
}
body {
background-color: #000000;
}
#Navigation {
position:absolute;
left:107px;
top:16px;
width:750px;
height:83px;
z-index:1;
}
#Main {
position:absolute;
left:106px;
top:102px;
width:750px;
height:501px;
z-index:2;
}
#Logo {
position:absolute;
left:26px;
top:60px;
width:183px;
height:309px;
z-index:2;
}
Any suggestions?
Thanks
I have 4 layers:
Wrapper - wraps the whole page
Navigation - speaks for itself
Main - main page body
Logo - a logo in the main page
My logo however, is displayed too far to the left when I browse it, but it's displayed correctly in dream weaver.
My css is below:
#Wrapper {
margin-right: auto;
margin-left: auto;
left:74px;
top:27px;
width:750px;
height:594px;
z-index:1;
background-color: #FFFFFF;
}
body {
background-color: #000000;
}
#Navigation {
position:absolute;
left:107px;
top:16px;
width:750px;
height:83px;
z-index:1;
}
#Main {
position:absolute;
left:106px;
top:102px;
width:750px;
height:501px;
z-index:2;
}
#Logo {
position:absolute;
left:26px;
top:60px;
width:183px;
height:309px;
z-index:2;
}
Any suggestions?
Thanks