Hi everyone, can anyone help make the logo / header bigger? No matter what I do, I’ve adjusted some sizes in the actual code and I’ve changed the size of my .png logo, but I can’t get it any bigger than this, I don’t even want it much bigger, just a little. Any ideas??
www.westmichiganballoons.com
Thanks so much
Hi,
Please follow the steps below.
-
Go to Online Store > Theme > Actions > Edit code > Assets > base.css
-
Add the code below in base.css
@media screen and (min-width: 750px) {
.header__heading-logo {
width: 300px !important;
}
}
- Save
You may edit header.liquid if the above code doesn’t work.
To edit the header.liquid, please follow the steps below.
-
Go to Online Store > Theme > Actions > Edit code > Sections/header.liquid
-
Find img_url: ‘250x’
*Something like below.
{{ 'logo.jpg' | img_url: '250x' }}
or
{{ section.settings.logo | img_url: '250x' }}
-
Replace the 250 to 280 or 300 (the width of your logo)
-
Save
If you can’t resolve the issue, please let me know.
Hope it helps.
Thanks.