Bot color

Alguien podrá ayudarme explicándome cómo cambiar el color de los puntos y del rollover del menú principal?
Gracias,
Gabriel Francés

Hola Gabriel,

This is the code that handles the dots color:

#header .bottom-header span.span-dot {
    color: #ffde00;
}

This is for the hover state of the menu items:

#header .top-header .header-navigation ul li a:hover {
    color: #ffde00;
}

This code should be placed in a child’s theme stylesheet.css, ideally.
But you can use a custom CSS plugin or place it inside Dashboard > Appearances > Editor > Style.css but keep in mind that this will get erased if you update the theme.

Let me know if this is what you were looking for.

Regards

Muchas gracias!!!