Hello! I would like to align my navigation to the very bottom of the header section so its sitting on the line.
Similar to the image attached (although that's a page title not nav).
[[LINK href="http://wip.brandschoolonline.com/"]]http://wip.brandschoolonline.com/[[/LINK]]
IndiTheme - answers:
Add this css,
.full-width #header #nav-container {
position: absolute;
bottom: 0;
right: 0;
}
or you can add this css to make nav become in bottom of site logo,
.full-width #header #nav-container {
float: left;
}
#logo {
float: none;
}
Liz comments:
Awesome, thank you!
Liz comments:
I cannot figure out how to mark this as closed and award the money.
Andrea P answers:
try adding this to your css:
.full-width #header-container #header #nav-container {
float: left;
display: block;
clear: both;
padding-top: 10px;
padding-bottom: 20px;
}