Viewing 2 replies - 1 through 2 (of 2 total)
  • You can do this through custom CSS. Here’s what I would recommend adding to your theme’s:

    .logo {
      height: 108px;
    }

    Feel free to change the height to whatever works best for you. I think 108px is a nice number. ?? If you want it to be larger than that on mobile, just add a media query that will override the one your stylesheet has now:

    @media only screen and (max-width: 767px) {
      .logo {
        height: 118px;
      }
    }

    That will push the nav down a bit, though, so feel free to mess with it as well.

    Hope that helps!

    Thread Starter preciseparity

    (@preciseparity)

    Thank you so much!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How do I make my logo and menu bigger in the Quest theme’ is closed to new replies.