Navigation buttons

Sorry if this has been asked and answered. I searched the forum but did not see an answer.

I would like to change the color of the navigation buttons to match the site logo. Is there an image file I can change or would I need to change some code?

Hi @josephhhunter,

The nav link buttons in the header inherit the primary and secondary link colors from your theme settings. Those colors are used for all links and tags across the site, so changing it there is probably the best route.

However, if you only want to change those specific links you can do so by adding some custom CSS, e.g.

#navigation .priority a.button-primary{
    background-color:red;
}
#navigation .priority a.button-primary:hover{
    background-color:pink;
}