Reply To: Nav bar alignment in header

Homepage Community Forums Epik Theme Support Nav bar alignment in header Reply To: Nav bar alignment in header

#8880
Wes
Moderator

    Your nav is already floating to the right, just like the other widget.

    The nav actually shows up the exact same whether there is a widget above it or not….you’re probably only noticing it’s position when there is a widget right above it, because the widget above it doesn’t have padding on the sides. The nav has padding on the right side of each of the nav links. Look around line 2025 –

    .genesis-nav-menu a {
        border: none;
        color: #fff;
        display: block;
        font-weight: 400;
        padding: 13px;
        position: relative;
    }

    So if you remove the padding for the right side, the nav will “appear” to sit all the way on the right….even though it already is.

    Try changing the padding like this –

    padding: 13px 0 13px 26px;

    The end result should look like this – http://i.imgur.com/tXYU49F.png