Issue Changing Header Theme for Contact Page

Solved

Issue Changing Header Theme for Contact Page

cynoapparel
Tourist
8 0 1

Hi all, just working on my store when a problem came up. How can I change the theme of the header on my contact page to the colour used below, #F8F8F8? (make the header darker to match the rest of the page) Thank you for your help!

 

Website URL: https://id0et1-1k.myshopify.com/

Website Password: ildeth

 

Screenshot 2025-01-30 at 5.27.49 AM.png

Accepted Solution (1)

DaisyVo
Shopify Partner
4469 501 598

This is an accepted solution.

Hi @cynoapparel 

I hope you are well. You can follow our instructions below:


1/ Shopify admin > Online store > Edit code: https://prnt.sc/M4p-gua99Uf4
2/ Search for "theme.liquid" file: https://prnt.sc/b6xveIKe-Rh2
3/ Open the file and search for </head> tag and add the following code above </head> tag: https://prnt.sc/KWtKYyZkDtYJ

 

Here is the code for Step 3:

 

{% style %}
{% if canonical_url == "https://id0et1-1k.myshopify.com/pages/contact" %}

main#MainContent {
 background: #F8F8F8 !important;
}
{% endif %}
{% endstyle %}
DaisyVo_0-1738237587634.png

 



Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution

View solution in original post

Replies 4 (4)

vm-web
Shopify Partner
154 10 29

@cynoapparel 

This is a code customization work please hire a shopify developer and contact shopify support!

Thanks!

If helpful then please Like and Accept Solution. | Email: vickyzilpe@gmail.com

DaisyVo
Shopify Partner
4469 501 598

This is an accepted solution.

Hi @cynoapparel 

I hope you are well. You can follow our instructions below:


1/ Shopify admin > Online store > Edit code: https://prnt.sc/M4p-gua99Uf4
2/ Search for "theme.liquid" file: https://prnt.sc/b6xveIKe-Rh2
3/ Open the file and search for </head> tag and add the following code above </head> tag: https://prnt.sc/KWtKYyZkDtYJ

 

Here is the code for Step 3:

 

{% style %}
{% if canonical_url == "https://id0et1-1k.myshopify.com/pages/contact" %}

main#MainContent {
 background: #F8F8F8 !important;
}
{% endif %}
{% endstyle %}
DaisyVo_0-1738237587634.png

 



Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
cynoapparel
Tourist
8 0 1

That worked, thank you so much!

Shipo-studio
Shopify Partner
57 12 20

Edit code -> search "theme.liquid' file => then in file search </body> tag and before that tag place the code i have provided below

 

<script>
  document.addEventListener("DOMContentLoaded", function() {
    if (window.location.pathname.includes("/pages/contact")) {
      document.querySelector('.header-wrapper').style.backgroundColor = "#F8F8F8";
    }
  });
</script>

like this 

ShakhawatArafat_0-1738238315132.png