Color Menu stays purple after clicking

On my webpage it seems that the colors of the menu are changing to the purple default color.

Website is www.letstalkslow.com.
If you’re going to Fashion and click on “no. 1” It sometimes turns purple.

This happens on the mobile version as well. It seems that if wordpress has an update, old custom CSS is not being used.

I would like the background of the menu to be white. Can you help me with this?

Hi,

For me when I click Fashion → Number 1… All looks just fine, menu background is still white and the menu color is still black, I tried a few times too.

  1. Make sure you put all your CSS either in your child theme’s style.css or Appearance -> Customize -> Additional CSS.

  2. You’re using this CSS right?

.navbar-default .navbar-nav .current-menu-ancestor a.dropdown-toggle {
    color: #000;
}

If that didn’t work means, try adding an !important.

.navbar-default .navbar-nav .current-menu-ancestor a.dropdown-toggle {
    color: #000 !important;
}

Let us know,

Thanks,
laranz.

Hi There,

I think this is working for now.
However the colors of the mobile version are still not correct. Couls you have a look at this as well?

Thanks a million!

Stephanie

Please try using below CSS code to change it.

#page .dropdown-menu>.active>a {
    color: #c4c1a2;
    background-color: #fff;
}