• Hey everyone. So, I’m pretty rusty with css, and for whatever reason I just can’t seem to figure out how to move the logo from where it’s being overlapped with the navigation. My preference would be to move it right above the navigation, with some space between the bottom of the logo and the top of the navigation, if possible. Any suggestions would be appreciated! I’ve been trying to google an answer for some time now, and I’ll keep doing so.

    Website in question: Northgoods.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Elizarin,

    Problem is that your header has fixed height of 60px so you can just set it to auto and your logo will be above navigation. You can do that by adding this code to your child theme style.css or in plugin like “Simple Custom CSS”:

    #header {
        height: auto;
    }

    Your logo is currently positioned on the left if you want to move it to right just add:

    .logo {
        float: right;
    }

    Regards.

    Thread Starter Elizarin

    (@elizarin)

    Thanks for the response! I hadn’t been able to implement the fix until just now, but it doesn’t seem to have affected the location of either the logo or navigation. Which doesn’t make sense to me, but hmm. So for whatever reason the logo is still overlapping.

    Thread Starter Elizarin

    (@elizarin)

    Nevermind, I got it all worked out! Thanks sooooooo much!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘(Goodtime Theme) Issues adjusting location of logo’ is closed to new replies.