mumford
07-15-2005, 02:47 PM
Hi
If you take a look at http://www.bullsigns.com/layout.gif, this is the layout I am trying to acieve.
2 colums 1 floated left 1 floated right, with the navigation placed over them. I presume this would have to be absolute positioned.?
Could someone give me a start on the css code and html on how to achieve what I want.
I have this so far
<div id="wrapper">
<div id="navigation">navigation
<div id="left">left
<div id="right">right
</div>
#wrapper{
width:760px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
#left{
float:left;
width:290px;
height:500px;
margin:0;
margin-right:0;
padding:0;
}
#right{
float:left;
width:290px;
height:500px;
margin:0;
margin-right:0;
padding:0;
}
#navigation{
position:absolute;
}
Thanks alot!!!
If you take a look at http://www.bullsigns.com/layout.gif, this is the layout I am trying to acieve.
2 colums 1 floated left 1 floated right, with the navigation placed over them. I presume this would have to be absolute positioned.?
Could someone give me a start on the css code and html on how to achieve what I want.
I have this so far
<div id="wrapper">
<div id="navigation">navigation
<div id="left">left
<div id="right">right
</div>
#wrapper{
width:760px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
#left{
float:left;
width:290px;
height:500px;
margin:0;
margin-right:0;
padding:0;
}
#right{
float:left;
width:290px;
height:500px;
margin:0;
margin-right:0;
padding:0;
}
#navigation{
position:absolute;
}
Thanks alot!!!