Header

Problem 1

Hi! I need help making the header below:

  1. https://yiwqh6-vk.myshopify.com/pages/contact

  2. https://yiwqh6-vk.myshopify.com/pages/return-exchange

  3. https://yiwqh6-vk.myshopify.com/pages/terms-of-service

  4. https://yiwqh6-vk.myshopify.com/policies/privacy-policy

Into like this :

Where my logos are visible.

Problem 2

And also I’d like to make my header for about us page (https://yiwqh6-vk.myshopify.com/pages/about-us) like my other tab such as (https://yiwqh6-vk.myshopify.com/collections/sets)

Hi @nothingchanges

In order to fulfill your 2 requests, please follow these steps
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above

{% style %}
{% if template.name == "page" %}
.shopify-section.shopify-section-group-header-group.section-header:not(.scrolled-past-header) .header__heading-logo-wrapper img {
    filter: invert(1) !important;
}
{% endif %}
{% endstyle %}
{% if page.id == 688892739947 %}
{% style %}
main#MainContent{
margin-top: -44px;
}
.header-wrapper {
    background: transparent !important;
}
.header-wrapper * {
    color: white !important;
}
{% endstyle %}
{% endif %}

Here is the result:

I hope this helps

Best,

Daisy

Thank you so much! It worked on the pages tab but not the about us page. But it’s okay. I’m grateful that it works on the other tab!