I would like to extend my left-hand navigation panel to the footer, so the panel does not come to abrupt end, which tends to look a bit odd.
Here is the way one of the pages looks now: http://wildadirondacks.org/adirondack-wildlife.html
Below is a picture of how I would like a page to look, with the left navigation panel extended down beyond the last navigation tab, to the top of the footer.

I know there is probably a very simple solution, but I have spent many hours scouring the web for fixes and trying out various modifications of the css. I have tried all sorts of things (changing height, min-height, etc), but nothing works. Could the fix somehow be related to my old nemesis, box-sizing: border-box?
If there is no simple solution, I would be satisfied with a solution that did not extend the navigation panel completely to the footer, but just far enough so the end is not abrupt. (I thought padding might work, but alas...) I have a gradient on the navigation panel, so the panel would just fade gracefully into white several inches or so below the last navigation tab. Anything to avoid the abrupt end.
Any suggestions?
Thanks, ellen
Here is the relevant css (asideLeft is my left-hand navigation panel):
Code:
/* These style determine how the page will look on a desktop with a viewing window from 1200 to 1400 pixels wide. */
.container {
width: 100%;
margin: 0 auto;
}
.Main {
width: 80%;
}
.asideLeft {
float: left;
background: #e6e9f1; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(rgba(230,233,241,1.00),rgba(230,233,241,0)); /*Safari 5.1-6*/
background: -o-linear-gradient(rgba(230,233,241,1.00),rgba(230,233,241,0)); /*Opera 11.1-12*/
background: -moz-linear-gradient(rgba(230,233,241,1.00),rgba(230,233,241,0)); /*Fx 3.6-15*/
background: linear-gradient(rgba(230,233,241,1.00), rgba(230,233,241,0)); /*Standard*/
margin-left: 10%;
width: 25%;
margin-right: 0px;
font-size: 1em;
}
.sectionRight {
width: 53%;
float: right;
margin-left: 2%;
text-align: left;
font-size: 1.2em;
margin-right: 10%;
}
footer {
width: 100%;
background-color: rgba(86,95,100,1.00);
float: left;
margin: 0 auto;
margin-bottom: 10px;
}
Bookmarks