Site logo

Archived topic

Highlight button on menu

5 replies · Started by Maria on August 18, 2020

Viewing posts 1–6 of 6

Hi,

I'm trying to highlight the "book a teacher" tab on my main menu but without success. Could you help please?

Many thanks,
Maria

Hi Leo,

Yes I've done it.

I'd like either to have a background of this colour: 3A858E or the text in this colour / not sure what looks better.

Thanks,
Maria

Hi there,

try this CSS:

/* Add Background Color for highlight */
.main-navigation .main-nav li.highlight a {
    background-color: #3A858E;
}

/* Add this if you want to change the color on hover */
.main-navigation .main-nav li.highlight:hover a {
    background-color: #3A858E;
}

or for text colors

/* Add label Color for highlight */
.main-navigation .main-nav li.highlight a {
    color: #3A858E;
}

/* Add this if you want to change the color on hover */
.main-navigation .main-nav li.highlight:hover a {
    color: #3A858E;
}

Thanks so much David!

You're welcome

This archived topic is closed to new replies.