Why is there a random sign above my AVONE theme header?

Hello everyone! As you can see there is a "> "> sign right above the header. I have tried multiple ways to solve this problem (adjusted announcements and checked the theme.liquid file) but nothing seems to help. I use the AVONE theme. Please let me know if you have any advice. Thank you :slightly_smiling_face:

Hello, @alexwood

Because there is a meta tag inside a meta tag.

<meta property=“og:description” content=“”>

<meta name=“twitter:description” content=“”>

Please check and correct these two meta tags in your theme.liquid file.

Unfortunately, I can’t find the text you’ve sent in my theme.liquid. Could you please help me figure it out? :slightly_smiling_face: I’m really sorry, just am confused by these meta tags :))

Here is my theme.liquid code:

{%- capture metaTags -%}

{% if settings.rtl %}

{% else %} {% endif %}

{%- if settings.favicon != blank -%}{%- endif -%}
{%- if settings.favicon_retina != blank -%}{%- endif -%}

{%- capture seo_title -%}
{%- if request.page_type == ‘search’ and search.performed == true -%}
{{ ‘general.search.heading’ | t: count: search.results_count }}: {{ ‘general.search.results_with_count’ | t: terms: search.terms, count: search.results_count }}
{%- else -%}
{{ page_title }}
{%- endif -%}
{%- if current_tags -%}{%- assign meta_tags = current_tags | join: ', ’ -%} – {{ ‘general.meta.tags’ | t: tags: meta_tags -}}{%- endif -%}
{%- if current_page != 1 -%} – {{ ‘general.meta.page’ | t: page: current_page }}{%- endif -%}
{%- assign escaped_page_title = page_title | escape -%}
{%- unless escaped_page_title contains shop.name -%}– {{ shop.name }}{%- endunless -%}
{%- endcapture -%}

{{ seo_title | strip }} {%- if page_description -%}{%- endif -%} {%- render 'social-meta-tags' -%} {%- endcapture -%} {{metaTags }}

{%- capture mainjs -%}
{%- render ‘head-css’ -%}
{% if settings.rtl %}

{% else %} {% endif %}

{%- endcapture -%}
{{mainjs | strip_newlines | remove: " " }}

{%- comment -%}{{ content_for_header }}{%- endcomment -%}
{%- render ‘header-content’ -%}

{%- if settings.show_language -%}
{%- include ‘weglot_hreftags’ -%}
{%- include ‘weglot_switcher’ -%}
{%- endif -%}

{% include ‘pagefly-header’ %}

{%- if settings.enable_age_varification -%}{% render 'age-check' %}{%- endif -%} {%- if settings.layout_style == "boxedlayout" -%}
{%- endif -%} {%- include 'header' -%} {%- if settings.top-information-bar -%}{% section 'top-info-panel' %}{%- endif -%} {{ content_for_layout }} {%- section 'footer' -%} {% if settings.layout_style == "boxedlayout" %}
{% endif %} {% section 'custom-colors' %}

{%- if template.directory == ‘customers’ -%}{%- endif -%}
{%- if content_for_layout contains ‘data-stellar-background-ratio’ -%}{%- endif -%}
{%- if content_for_layout contains ‘grid-masonary’ -%}{%- endif -%}
{%- if settings.show_multiple_currencies and settings.currency_opt == ‘script’ -%}{%- render ‘currencies’ -%}{%- endif -%}
{%- if settings.enable_site_animation -%}{%- endif -%}

{%- render ‘theme-modals’ -%}
{%- if settings.show_sticky_arrow -%}{%- endif -%}

{% include ‘icart-drawer’ %}