Need header logo larger in Dawn theme 15.2.0

I have Dawn theme 15.2.0

On my header, I maximized my logo but need it larger. There is still white space around it so I see that it can fit, but I have it maximized on the settings. Is there any way to make it larger?

Hi @CuttingEdgeProm

Could you please share the store link with us so we can check further?

Looking forward to hearing from you soon. Thank you!

Best,
Daisy - Avada Support Team.

Hello @CuttingEdgeProm

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.header__heading-logo { transform: scale(1.2) !important; }

RESULT:

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

Hi @CuttingEdgeProm

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
@media(min-width:990px){
.header__heading-logo {
    height: 70px !important;
    max-width: 100%;
    object-fit: fill;
}
}

Result:

If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!

Hi @CuttingEdgeProm

I hope you are well. You can follow our instructions below:

1/ Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
2/ From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/iDxwa8zBQ4Z-
3/ Copy the code below and paste it there

Here is the code for Step 3:

.header__heading-logo-wrapper .header__heading-logo {
    transform: scale(1.2) !important;
  }

Please let me know if it works. Thank you!

Best,
Daisy - Avada Support Team.

that worked Daisy-thank you!!! But is there any way to get the logo to be even larger?

Hi @CuttingEdgeProm

You can increase the number using the code I shared above and see if it’s working. You can try with 1.3 or 1.5 to test it first :heart: