• By default, the menu title text is black/asphalt…is there a way to change this to match the site’s accent color? or to make the dropdown menu’s background change to the accent color?

Viewing 1 replies (of 1 total)
  • Theme Author bradthomas127

    (@bradthomas127)

    Try these out in the custom CSS option.

    Title:

    .main-navigation li a { color: #666; }

    Title on hover:

    .main-navigation li a:hover { color: #111; }

    Sub Menu BG color:

    .main-navigation li ul li a { background: #555; }

    Also the Sub menu triangle should be same color as above:

    .main-navigation li ul::after { border-bottom-color: #555; }

    Above is the colors they are by default, so change the hex to your liking: https://www.w3schools.com/html/html_colors.asp

Viewing 1 replies (of 1 total)
  • The topic ‘Change Menu Title’ is closed to new replies.