Header background color change - Motion theme

Solved

Header background color change - Motion theme

Sivadarshan
Shopify Partner
261 1 47

I want to change the header background color to #FFFFFF (White) on all device

 

Website: https://e54etn8ce0t65mr9-67925410094.shopifypreview.com

 

Thanks in advance

Accepted Solution (1)

Rahul_dhiman
Shopify Partner
761 145 157

This is an accepted solution.

Hello @Sivadarshan 
Go to online store ----> themes ----> actions ----> edit code ----> theme.css
add this code at the end of the file and save.

.site-header {
background: #FFFF;
}

result
1.png

If this was helpful, hit the like button and accept the solution.
Thanks

Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront

Contact here


BEST CUSTOMER ACCOUNTS APP WITH CUSTOM WISHLIST OPTION 
TRY OUR APP :

PWC: Customer Accounts & Pages

View solution in original post

Replies 3 (3)

Moeed
Shopify Partner
6968 1878 2295

Hey @Sivadarshan 

 

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#SiteHeader {
    background: white !important;
}
</style>

RESULT:

Moeed_0-1740989571042.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


Rahul_dhiman
Shopify Partner
761 145 157

This is an accepted solution.

Hello @Sivadarshan 
Go to online store ----> themes ----> actions ----> edit code ----> theme.css
add this code at the end of the file and save.

.site-header {
background: #FFFF;
}

result
1.png

If this was helpful, hit the like button and accept the solution.
Thanks

Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront

Contact here


BEST CUSTOMER ACCOUNTS APP WITH CUSTOM WISHLIST OPTION 
TRY OUR APP :

PWC: Customer Accounts & Pages

SUM0513
Shopify Partner
11 1 5

Hello there,

In the 'theme.css' file, find '.site-header' (most probably at line 5343)  and change the background to '#FFFFFF':

.site-header {
 ---
    background: #ffffff;
 ---
}