How can I adjust the logo size on a mobile view in the Dawn theme?

Hi, can someone help me to enter a code to enlarge the logo from the phone?
Because the theme (dawn) that I use it has no function to change the size of the logo

Hello @log11

Can you share store URL?

did you see?

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

@media screen and (max-width: 767px){ .header__heading-logo { height: 56px !important; max-width: 155px !important; } }

techlyser_web_0-1709117848585.png

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

Before that?
Can you write just the code that I need to paste

yes

You can write ONLY what I have to paste.

thanks

@media screen and (max-width: 767px){ .header__heading-logo { height: 56px !important; max-width: 155px !important; } }
1 Like