How can I increase the size of my logo/header?

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.

  1. Go to Online Store > Theme > Actions > Edit code > Assets > base.css

  2. Add the code below in base.css

@media screen and (min-width: 750px) {
  .header__heading-logo {
    width: 300px !important;
  }
}
  1. Save

You may edit header.liquid if the above code doesn’t work.

To edit the header.liquid, please follow the steps below.

  1. Go to Online Store > Theme > Actions > Edit code > Sections/header.liquid

  2. Find img_url: ‘250x’

*Something like below.

{{ 'logo.jpg' | img_url: '250x' }}

or 

{{ section.settings.logo | img_url: '250x' }}
  1. Replace the 250 to 280 or 300 (the width of your logo)

  2. Save

If you can’t resolve the issue, please let me know.

Hope it helps.

Thanks.