• Resolved jmolina1515

    (@jmolina1515)


    Hi, my website is inquestly.com and as you can probably see my header logo takes up way too much space. how do i make it a normal size? Thanks! and also how do i hide the title and tagline from the page?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Add the following wherever you prefer to add custom CSS (Jetpack, Child Theme, etc.)

    how do i make it a normal size?

    #logo-image {
      max-width: 12em;
      width: 100%;
    }

    You can adjust the max-width until you get it where you’d like, that is just a quick example.

    also how do i hide the title and tagline from the page?

    .title-container {
      text-indent: -9999px;
      display: block;
      height: 0;
      margin-bottom: 0;
    }
    Thread Starter jmolina1515

    (@jmolina1515)

    Thank you Craig, it worked great! How do I eliminate the white space above and below the logo?

    Thread Starter jmolina1515

    (@jmolina1515)

    never mind, i got it. thank you for the help

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to make header logo smaller’ is closed to new replies.