Viewing 3 replies - 1 through 3 (of 3 total)
  • shahzeen(woo-hc)

    (@shahzeenfarooq)

    Hi there!

    I understand that you want to change the logo size. Generally, we do not provide support for custom CSS, as it falls outside the scope of our standard support.

    However, as an exception, you can use the following CSS code to adjust the logo size.

        .site-header .site-branding img {
    max-width: 400px;
    }

    Note: You can replace the 400px value with any other value you prefer.

    I hope this helps.

    Thread Starter Pederb6

    (@pederb6)

    Thxs, that worked, anyway to center it?

    • This reply was modified 2 months ago by Pederb6.
    shahzeen(woo-hc)

    (@shahzeenfarooq)

    Hi there!

    You can use the following code to allign the logo as center.

    .site-header .site-branding {
    width: 100% !important;
    }
    .site-header .site-branding img {
    margin-left: auto;
    margin-right: auto;
    }

    I hope this helps.

Viewing 3 replies - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.