Change navigation background colour on contact page only

I changed the main body colour on my contact page as it seemed a bit dull. Now my Nav buttons on that page have an ugly white background. I want to ONLY change the background colour (and maybe the text colour if necessary) on this one page. I am using a minimal theme and have tried a few things on a duplicate but it’s only giving me mobile previews where the issue is irrelevant. I am a newbie to coding and it’s doing my head in!!

https://theplantfactor.com.au/pages/contact-us is the URL with the issue.

1 Like

@Jaypea

sorry for that issue can you try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/timber.scss.liquid->paste below code at the bottom of the file.
#contact-us a.site-nav__link {
    background: transparent;
    color: #000;
}

#contact-us .site-nav__dropdown {
    background: #fff;
}

#contact-us a.site-nav__link span.icon.icon-arrow-down {
    color: #000;
}
1 Like

Thank you. That worked perfectly.