Changing logo size bigger in header.liquid

I have purchased the Beyond Theme from Shopify and non of the coding I have previously used are working to be able to make the logo bigger. Previously I have edited the header.liquid, but this doesn’t seem to work on this particular theme. This was the code that worked on other themes:

.header__heading-logo {
max-width: 400px! important; {{ section.settings.logo_width }}px;

I also don’t have a theme.scss.liquid in assets on this theme, I only have theme-async.scss and theme-critical.scss - so I am confused as to how to edit it. Any help would be much appreciated.

See the code below.

{%- liquid
assign search_t = ‘layout.header.search’ | t

assign account_icon = section.settings.account-icon
assign search_icon = section.settings.search-icon
assign cart_icon = section.settings.cart-icon
assign logo_image = section.settings.logo
assign logo_height = section.settings.logo-height
assign fix_enabled = section.settings.fix-enabled
assign fixed_logo_height = section.settings.fixed-logo-height
assign logo_position = section.settings.logo-position
assign menu = section.settings.menu
assign show_account = section.settings.header-account-show
assign locale_enabled = false
assign region_enabled = false

if section.settings.show-region-selector and localization.available_countries.size > 1
assign region_enabled = true
endif
if section.settings.show-locale-selector and localization.available_languages.size > 1
assign locale_enabled = true
endif

capture logo_html
render ‘logo’, logo: logo_image, height: logo_height, mobile_height: fixed_logo_height
endcapture

capture search_html
if search_icon == ‘icon’
render ‘icons’, icon: ‘search’
elsif search_icon == ‘text’
echo search_t
endif
endcapture

capture cart_html
render ‘header-cart’, cart_icon: cart_icon
endcapture
-%}

{% capture menu_icon_html %}

{% render 'icons', icon: 'menu' %}
{% endcapture %}

{% capture x_menu_html %}
{%
render ‘x-menu’,
overlap_parent: 2,
handle: menu,
use_external_icon: true
%}
{% endcapture %}

{% if logo_image %}
{% capture fixed_logo_dimensions = fixed_logo_height %}
max-height: {{ fixed_logo_height }}px;
max-width: {{ fixed_logo_width| times: logo_image.aspect_ratio }}px;
{% endcapture %}

.header--root[data-fixed="true"] .header--logo img { {{ fixed_logo_dimensions }} }

{% endif %}

{% if fix_enabled %}

{% endif %}

<header-root
class=“header–root”
data-section-id=“{{ section.id }}”
data-logo-position=“{{ logo_position }}”
data-fixed=“false”
data-fixed-enabled=“{{ fix_enabled }}”
style=“display:block;”

{% if locale_enabled or region_enabled %}

{% render 'localization', locale_enabled: locale_enabled, region_enabled: region_enabled, id: 'off-canvas' %}
{% endif %}
{% render 'y-menu', handle: menu %}
{{ menu_icon_html }}

{% if logo_position == ‘left’ %}

{{ logo_html }}
{% endif %}
{% if logo_position != 'above' %} {{ x_menu_html }} {% endif %}
{{ logo_html }}
{% render 'localization', locale_enabled: locale_enabled, region_enabled: region_enabled, id: 'header' %}

{% if shop.customer_accounts_enabled and show_account %}

{% render 'login', account_icon: account_icon %}
{% render 'login', account_icon: account_icon, is_off_canvas: true %}
{% endif %}

{% if settings.search–show-in-header %}

{% endif %}
{{ cart_html }}

{% if logo_position == ‘above’ %}

{{ x_menu_html }}
{% endif %}
{% render 'x-menu', overlap_parent: 2, handle: 'noscript', use_external_icon: true, noscript: true %}

{% schema %}
{
“name”: “Header”,
“class”: “section–header”,
“settings”: [
{
“type”: “header”,
“content”: “Logo”
},
{
“type”: “image_picker”,
“id”: “logo”,
“label”: “Image”,
“info”: “1600 x 200px max”
},
{
“label”: “Position”,
“id”: “logo-position”,
“type”: “select”,
“options”: [
{ “label”: “Above menu”, “value”: “above” },
{ “label”: “Left”, “value”: “left” },
{ “label”: “Center”, “value”: “center” }
],
“default”: “left”,
“info”: “Position may change on smaller screens or when menu is overlapping”
},
{
“label”: “Image height”,
“id”: “logo-height”,
“type”: “range”,
“min”: 15,
“max”: 50,
“step”: 5,
“default”: 50,
“info”: “This is referring to the natural height and should be half the height of the image you uploaded to ensure it stays sharp on retina screens.”
},
{
“type”: “header”,
“content”: “Sticky and mobile header”
},
{
“label”: “Stick to top of screen when scrolling”,
“id”: “fix-enabled”,
“type”: “checkbox”,
“default”: true,
“info”: “Disabled in theme editor when inspector enabled.”
},
{
“label”: “Image height”,
“id”: “fixed-logo-height”,
“type”: “range”,
“min”: 10,
“max”: 100,
“step”: 5,
“default”: 20
},
{
“type”: “header”,
“content”: “Menu”
},
{
“type”: “link_list”,
“id”: “menu”,
“label”: “Menu”,
“default”: “main-menu”
},
{
“type”: “header”,
“content”: “Links”
},
{
“type”: “checkbox”,
“id”: “header-account-show”,
“label”: “Enable customer account links”,
“default”: true,
“info”: “You will also need to enable customer accounts in your store settings
},
{
“type”: “select”,
“id”: “account-icon”,
“label”: “Account button”,
“options”: [
{ “label”: “Icon”, “value”: “icon” },
{ “label”: “Text”, “value”: “text” }
],
“default”: “text”
},
{
“type”: “select”,
“id”: “search-icon”,
“label”: “Search button”,
“options”: [
{ “label”: “Icon”, “value”: “icon” },
{ “label”: “Text”, “value”: “text” }
],
“default”: “text”
},
{
“type”: “select”,
“id”: “cart-icon”,
“label”: “Cart button”,
“options”: [
{ “label”: “Text”, “value”: “text” },
{ “label”: “Bag”, “value”: “bag” },
{ “label”: “Cart”, “value”: “cart” }
],
“default”: “text”
},
{
“type”: “header”,
“content”: “Country/region Selector”,
“info”: “To add a country/region, go to your payment settings.”
},
{
“type”: “checkbox”,
“id”: “show-region-selector”,
“label”: “Show country/region selector”,
“default”: true
},
{
“type”: “header”,
“content”: “Language Selector”,
“info”: “To add a language, go to your language settings.”
},
{
“type”: “checkbox”,
“id”: “show-locale-selector”,
“label”: “Show language selector”,
“default”: true
}
]
}
{% endschema %}

@AliceMellegard - this will need css, can you please share your website link?

Hi. My site isn’t actually live yet, would it be helpful if I sent you a screenshot at all?

@AliceMellegard - screenshot will not allow to check code, can you please share the preview link? you can share here in DM or email the link

I have sent you an email with the preview link.

@AliceMellegard - I sent the reply, please check