Taking the nav bar from Dazzling into Sparkling.

This post belongs more in the Sparkling form, but it’s getting spammed at the moment.

I’d like to use the exact same styling Dazzling is using in the nav/menu bar, and that includes changing the header from grey to white.

Does anyone know how I can do this? I have only some php and css knowledge.

Hi @ztg1,

I hope you are well today and thank you for your question.

I have moved your topic over Sparkling forum. You should not get spammed for posting on the Sparkling forum but if you are getting continuously then please let us know so that we can troubleshoot the issue and fix it for you.

You can change the color of your Sparkling theme nav/menu bar same as Dazzling theme by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Apperance -> Theme Options -> Other -> Custom CSS

nav.navbar.navbar-default a.navbar-brand,
nav.navbar.navbar-default a {
  color: #000;
}
nav.navbar.navbar-default {
  background-color: #fff;
  color: #000;
}

Best Regards,
Movin