How can I change the nav menu font colour on my homepage only?

archetype motion theme

I would like to change the Nav Menu colour on my homepage ONLY.

Current image on homepage renders dark blue font hard to read. I would like to change it to: #FFF2C4

Hello @TSMShane ,

Follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your theme.css file and paste the following code below:

.template-index .is-light .site-nav__link {
    color: #FFF2C4;
}

Thanks

Thank you :slightly_smiling_face:
Very appreciated!