• Resolved tomnewbie

    (@tomnewbie)


    Hi Everyone
    I would like to make my logo bigger on my website whats the easiest way to do this?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Job a11n

    (@jobthomas)

    Automattic Happiness Engineer

    Changing the max-width of the logo will do that. This can be fixed with some custom CSS. Under Customize > Additional CSS, you can add the following code:

    /* Change size of logo */
    
    @media (min-width: 768px) {
    .site-header .site-branding img {
      max-width: 400px; //you can change this number
    }

    If you’d like to learn more about CSS, I highly recommend using the free tutorials at w3schools. Here, you can find the basics of selectors (how to target the right element on the page), and properties (how to change the element on the page).

    Thread Starter tomnewbie

    (@tomnewbie)

    Great work thanks again!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Make Logo larger’ is closed to new replies.