Buy me a coffee

How to change color of header menu on Homepage and Other Pages

#Option 1. Use CSS code

To change the color of the Header menu on the Homepage, you can use this code to Website Tools > Custom CSS.

body.homepage div.header-nav-item>a {
    color: #fff !important;
}

How To Change Color Of Header Menu 01 Min

To change the color of the Header Menu on Other Pages, you can use this CSS code.

body:not(.homepage) div.header-nav-item>a {
    color: #f1f !important;
}

How To Change Color Of Header Menu 02 Min

#Option 2. Use Site Styles

First, you can edit the Site Header

How To Change Color Of Header Menu 03 Min

Click Edit Design

How To Change Color Of Header Menu 04 Min

Click Color, choose Solid > Then you can change Navigation Color here

How To Change Color Of Header Menu 05 Min

This will change color of Header Menu items on All Pages. So to change color to different color on Homepage Only, you can use this code to Custom CSS box.

body.homepage div.header-nav-item>a {
    color: #fff !important;
}

How To Change Color Of Header Menu 06 Min