Change Antimatter open publishing menu link colors

Hi,
I’m quite new to Grav, but have reasonable experience with CSS/PHP. However, I can’t seem to find where the colors for the menu items are defined within the .css or .twig files. Right now it’s the standard blue, and when hovered a bit darker…
I hope someone can help me and point me in the right direction :slight_smile:

ps. website is www.robberends.com

Hi @berendsrob, one way to do this is to use a custom.css in your theme’s css folder, and use something like this to change the color there:

#header #navbar ul.navigation li a {
    color: #FFFFFF;
}

More info about custom CSS at:
https://learn.getgrav.org/themes/customization#custom-css

BTW, my favorite tool these day’s to find out the needed CSS is the “Developer Tools” under the “View -> Developer” menu in Google Chrome (which likely you already know about but just in case🙂)