Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

align nav to bottom? WordPress

  • SOLVED

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]]

Answers (2)

2016-03-04

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.

2016-03-04

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;
}