Reply To: Logo Cut Off by Header Nav Menu

Homepage Community Forums Epik Theme Support Logo Cut Off by Header Nav Menu Reply To: Logo Cut Off by Header Nav Menu

#13190
Wes
Moderator

    Yes that’s normal, but if you only have a couple menu items then it probably won’t look right floating to the left when it should be on the right. If you have a lot of menu items like the demo, then it will always appear on the right because of the length of the nav. The reason it’s doing that is because the div changes width when resized. It goes from auto to 620px. One way to fix this is to keep the width at auto. You find this around line 4040 in your css and it should look like this –

    .content,
    .site-header .widget-area {
        width: 620px;
    }

    Just change that to this –

    .content,
    .site-header .widget-area {
        width: auto;
    }

    …and it should fix it.