How can I resize my logo in Studio theme 10.0?

Hi, I just updated the studio theme from 8 to 10.0 and my snippet of code no longer works to make my logo larger. Can anyone please point me in the right direction to make this change on the updated theme?

Thanks so much!

Christina

https://sublimationblankscanada.com

Hi @CRytter ,

Try this.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
#shopify-section-sections--16813253230818__header .header__heading-logo {
    max-width: 90%;
    height: auto;
}
@media only screen and (max-width: 768px){
    #shopify-section-sections--16813253230818__header .header__heading-logo {
    max-width: 70%;
}
}
@media only screen and (max-width: 480px){
    #shopify-section-sections--16813253230818__header .header__heading-logo {
    max-width: 50%;
}
}

Result:

It will change in mobile and other screen.

I hope it help.

Hi Ribe, thank you for your help. I’ve added the code to the base.css, but no changes took place. Am I missing a step or have a I done something wrong? I need for the desktop logo to display at 450px wide and 206px high. I can achieve it when I change a few settings in the source code on the web browser, but I’m not sure what code to carry over to the website and also not sure where to add it.