How can I enlarge the logo on my Woodstock theme header?

I’m working with Woodstock theme header 1 and I’ve done everything I can imagine to make the logo bigger.

Here’s my preview link. Any insight is appreciated. I think my logo is 1600x700 but I’ve tried to fit it in every conceivable size and it just won’t get bigger.

ETA: the formatting of the header is off but` it won’t stay that way. I’m just concerned about the size of the logo at the moment.

https://byo1iek64whuo7xk-58632339650.shopifypreview.com

TIA!

The assets img url for the logo generated is 100x44 pixels This is the first problem to solve.

I don’t have Woodstock theme sources, so can you verify in the liquid code how the logo is added to the header and post that line of code here?

Thank you for replying. I’m not sure where to go exactly an what I need to transfer over for you to see.

I found a logo-bar in liquid is that what you need to see?

To be honest I am not sure if it is that the file. Try to search if that file contains header__logo

And just post that line here and a couple of lines before and after.

.site-header__menu {
  display: none;
}

.site-header .icon-search,
.site-header .icon-hamburger,
.site-header .icon-close,
.site-header .icon-cart {
  height: 30px;

  @include media-query($medium-up) {
    margin-right: 3px;
  }
}

@include media-query($small) {
  .site-header__logo {
    padding-left: $gutter-site-mobile;
  }

  .site-header__icons {
    padding-right: $gutter-site-mobile;
  }

  .site-header__menu,
  .site-header__search-toggle,
  .site-header__cart,
  .site-header__account {
    display: inline-block;
    vertical-align: middle;
    padding: 18px 8px;
    margin: 0;

    .site-header__icons--plus & {
      padding: 18px 6px;
    }
  }

  .site-header__logo {
    text-align: left;

    img {
      margin: 0;
    }
  }
}

.article--listing {
  padding-top: $gutter-site;
  margin-bottom: $gutter-site;
}

Hi, sorry you need to search site-header__logo in liquid files inside sections, snippets and templates folder.