My theme.scss.liquid code not working now

Hi. I edited a piece of code, removed the edit but it still not working. Website is: https://scouseface.com/ pass is turks

my error says…

The following error was found in assets/theme.scss.liquid

Invalid CSS after "...-stack-header: ": expected expression (e.g. 1px, bold), was ", serif;" at 356

Can anyone help fix this this?

Hi @pmstaff2

Could you open your theme.scss.liquid file and drop code in line 356 here to check?

/*================ SETTINGS ================*/
/*========================================================================================
  Liquid Variables
    - All liquid variables abstracted in one place, so linting can be run everywhere else
=========================================================================================*/
$settings-color-primary: {{ settings.color_primary }};

$settings-color-header-text: {{ settings.color_header_text }};
$settings-color-primary-heading-text: {{ settings.color_primary_heading_text }};
$settings-color-primary-body-text: {{ settings.color_primary_body_text }};
$settings-color-button-text: {{ settings.color_button_text }};

$settings-color-header: {{ settings.color_header_bg }};
$settings-color-footer-bg: {{ settings.color_footer_bg }};
$settings-color-footer-text: {{ settings.color_footer_text }};
$settings-color-main-bg: {{ settings.color_main_bg }};
$settings-color-secondary-bg: {{ settings.color_secondary_bg }};

$settings-color-product-card: {{ settings.color_product_cards }};
$settings-color-form-elements: {{ settings.color_form_elements }};
$settings-color-cart-flag: {{ settings.color_cart_flag }};

{% assign header_font = settings.type_header_font %}
{% assign base_font = settings.type_base_font %}

{{ header_font | font_face }}
{{ base_font | font_face }}

{%- assign base_font_semi_bold = base_font | font_modify: 'weight', '+200' -%}
{%- assign base_font_bold = base_font | font_modify: 'weight', 'bolder' -%}
{%- assign base_font_italic = base_font | font_modify: 'style', 'italic' -%}
{%- assign base_font_bold_italic = base_font | font_modify: 'weight', 'bolder' | font_modify: 'style', 'italic' -%}

{{ base_font_semi_bold | font_face }}
{{ base_font_bold | font_face }}
{{ base_font_italic | font_face }}
{{ base_font_bold_italic | font_face }}

$settings-font-stack-header-weight: {{ header_font.weight }};
$settings-font-weight-body: {{ base_font.weight }};
$settings-font-weight-body-bold: {{ base_font_bold.weight | default: 700 }};
$settings-font-weight-body-semi-bold: {{ base_font_semi_bold.weight | default: 600 }};

$settings-font-stack-header: {{ header_font_family }}, {{ header_font.fallback_families }};
$settings-font-style-header: {{ header_font.style }};

$settings-font-stack-body: {{ base_font_family }}, {{ base_font.fallback_families }};
$settings-font-style-body: {{ base_font.style }};

$settings-font-size-base: {{ settings.type_base_size }};

/*================ Product video ================*/
/* Create an appropriate poster background color based on background color and brightness */

{%- assign color_main_bg = settings.color_main_bg -%}
{%- assign color_main_bg_brightness = color_main_bg | color_brightness -%}
{%- if color_main_bg_brightness <= 26 -%}
  {%- assign background_color_poster = color_main_bg | color_lighten: 10 -%}
{%- elsif color_main_bg_brightness <= 65 -%}
  {%- assign background_color_poster = color_main_bg | color_lighten: 5 -%}
{%- else -%}
  {%- assign background_color_poster = color_main_bg | color_darken: 5 -%}
{%- endif -%}
$color-video-bg: {{ background_color_poster }};

Hi. Row 356 is empty. In the following code it is the blank row above the commented out section: /================ Product video ================/

Is this theme.scss.liquid file?

yes

Could you take a screenshot contains name of that file?

What do you mean sorry?

Example like this

Please find all code has this part “-stack-header” and check if it has a mistake in code and correct.

That is what I mean, I am not sure what is or is not an error.

Can I send collaborator request to your store so I can try to check it for you?

Yes sure. https://turkey-tees.myshopify.com/

Already sent, please approve

re-send. I just turned off th Collab code feature

Sent

accepted

I got it, let me check

Hi, the issue is solved. It should “.” in there but it was “_” so it caused the issue

Ah got it. Thank you.