Re: Reformation theme - How to change header navigation text and icon colour?

Solved

Reformation theme - How to change header navigation text and icon colour?

SarahHalim
Excursionist
24 0 3

Hi, how do I customize color for my reformation theme header? I have few menu to update.

1. Transparent header color change to #000000 for both navigation menu and icon.
2. Menu colour customization - For Clearance tab change to #F70000 

 

I also want to know how to customize the shopify search and shopping bag icon as i have my own icon.

this is my store url: https://msreadshop.com/ 

Thank you

Accepted Solutions (3)

Moeed
Shopify Partner
7072 1903 2331

This is an accepted solution.

Hey @SarahHalim 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag

<style>
header#header {
    background: #000000 !important;
}

.thb-secondary-area-item.thb-secondary-myaccount img {
    filter: invert(1);
}
</style>

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

Moeed
Shopify Partner
7072 1903 2331

This is an accepted solution.

Hey @SarahHalim 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag

<style>
.header.transparent--true:not(:hover):not(.is-sticky) .thb-full-menu>li>a {
    color: black !important;
}
</style>

Moeed_0-1689057637877.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

saim007
Shopify Partner
611 75 106

This is an accepted solution.

Hi @SarahHalim 

Follow Below Steps to solve your all problems:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag

 

<style>
.header.transparent--true:not(:hover):not(.is-sticky) .thb-full-menu>li>a {
    color: #000;
}
.thb-full-menu a[title="CLEARANCE"] {
    color: #f70000;
}
.header.transparent--true:not(:hover):not(.is-sticky) svg path {
    stroke: #000;
}
</style>

 

It will look like this-

sandyparihar07_0-1689058070428.png

Please mark as solve when works!

Saim | Shopify Partner Expert

Was I helpful?

Buy me a Coffee

🙂
Hire me   to unlock the full potential of your e-commerce store 🙂

View solution in original post

Replies 9 (9)

websensepro
Shopify Partner
1869 220 266

Hi, @SarahHalim.

 

Follow These steps,

Go to the online store theme and go to base.css file paste the code mentiond below.

 

header#header {
    background: #000000 !important;
}

.thb-secondary-area-item.thb-secondary-myaccount img {
    filter: invert(1);
}

 

Result;

websensepro_0-1689056532298.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP
SarahHalim
Excursionist
24 0 3

hi websenpro, sorry i have a typo in question. I would like to change the transparent header text only to #000000 and the clearance tab change to #F70000

Hope you can help.

 

websensepro
Shopify Partner
1869 220 266

Add these css.

Go to the online store theme and go to base.css file paste the code mentiond below.

 

.thb-secondary-area-item.thb-secondary-myaccount img {
    filter: invert(1);
}

a.thb-secondary-area-item.thb-my-wishlist img {
    filter: invert(1);
}

.header.transparent--true:not(:hover):not(.is-sticky) .thb-full-menu>li>a {
    color: #000000 !important;
}

.thb-full-menu li.menu-item-has-children>a svg {
    filter: invert(1);
}

 

Result;

websensepro_0-1689057596840.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP

Moeed
Shopify Partner
7072 1903 2331

This is an accepted solution.

Hey @SarahHalim 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag

<style>
header#header {
    background: #000000 !important;
}

.thb-secondary-area-item.thb-secondary-myaccount img {
    filter: invert(1);
}
</style>

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


SarahHalim
Excursionist
24 0 3

hi Moeed, sorry I have a typo in question. I would like to change the transparent header text only to #000000 and the clearance tab change to #F70000

Moeed
Shopify Partner
7072 1903 2331

This is an accepted solution.

Hey @SarahHalim 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag

<style>
.header.transparent--true:not(:hover):not(.is-sticky) .thb-full-menu>li>a {
    color: black !important;
}
</style>

Moeed_0-1689057637877.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


saim007
Shopify Partner
611 75 106

This is an accepted solution.

Hi @SarahHalim 

Follow Below Steps to solve your all problems:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag

 

<style>
.header.transparent--true:not(:hover):not(.is-sticky) .thb-full-menu>li>a {
    color: #000;
}
.thb-full-menu a[title="CLEARANCE"] {
    color: #f70000;
}
.header.transparent--true:not(:hover):not(.is-sticky) svg path {
    stroke: #000;
}
</style>

 

It will look like this-

sandyparihar07_0-1689058070428.png

Please mark as solve when works!

Saim | Shopify Partner Expert

Was I helpful?

Buy me a Coffee

🙂
Hire me   to unlock the full potential of your e-commerce store 🙂
SarahHalim
Excursionist
24 0 3

Thanks~!

 

Jean-h
Visitor
2 0 0

hey may I have the same theme. how did you change the"my account"  LOGIN text into the icon?