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
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
Hi @CRytter ,
Try this.
#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.