ne_plus_ultra
11-03-2007, 04:47 PM
So. I am learning CSS with the help of many guides, pros on this forum, and useful research from w3 etc. I have one minor question which is probably easily accomplished. After several ill-fated attempts I haven't been able to add it successfully.
- How can I add side navigation to my main content?
Here is my html:
-------------------------------------------------------------------------
<div id="content">
<h2>Products</h2>
</div>
<div id="content2">
</div>
<div id="padder"></div>
</div>
<div id="footer">
-------------------------------------------------------------------------
Here is the css:
-------------------------------------------------------------------------
#content {
border-left: 16px solid #50525a;
border-right: 16px solid #50525a;
height: 42px;
background-image:url(css%20images/content_background.gif);
background-repeat:repeat-x;
padding: 10px;
overflow: hidden;
margin-top: 14px;
margin-right: 0;
margin-bottom: 14px;
margin-left: 0;
}
#content2 {
margin: 10px 0;
background-image:url(css%20images/content_background.gif);
background-repeat:repeat;
padding: 0px 27px;
overflow: hidden;
}
* html #content {
overflow: visible;
height: 1%;
}
#content h2 {
font-weight: normal;
font-size: 160%;
text-transform: uppercase;
}
#padder {
height: 70px;
}
#footer {
font-size: 80%;
font: tahoma;
color: #4F5257;
text-align: right;
padding-top: 10px;
width: 766px;
height: 70px;
margin: -70px auto 0;
background-color: #2f3137;
}
-------------------------------------------------------------------------
- How can I add side navigation to my main content?
Here is my html:
-------------------------------------------------------------------------
<div id="content">
<h2>Products</h2>
</div>
<div id="content2">
</div>
<div id="padder"></div>
</div>
<div id="footer">
-------------------------------------------------------------------------
Here is the css:
-------------------------------------------------------------------------
#content {
border-left: 16px solid #50525a;
border-right: 16px solid #50525a;
height: 42px;
background-image:url(css%20images/content_background.gif);
background-repeat:repeat-x;
padding: 10px;
overflow: hidden;
margin-top: 14px;
margin-right: 0;
margin-bottom: 14px;
margin-left: 0;
}
#content2 {
margin: 10px 0;
background-image:url(css%20images/content_background.gif);
background-repeat:repeat;
padding: 0px 27px;
overflow: hidden;
}
* html #content {
overflow: visible;
height: 1%;
}
#content h2 {
font-weight: normal;
font-size: 160%;
text-transform: uppercase;
}
#padder {
height: 70px;
}
#footer {
font-size: 80%;
font: tahoma;
color: #4F5257;
text-align: right;
padding-top: 10px;
width: 766px;
height: 70px;
margin: -70px auto 0;
background-color: #2f3137;
}
-------------------------------------------------------------------------