Change Button Color

I tried using the search bar for this but didn’t find a good post. For Illdy, the default color of the buttons and for the giant period in the jumbotron image is yellow. How can I change this color?

Same question for the link color: how can I change it from yellow to a different default color?

Hi @tmh12,

Use this css code for buttons and replace with your custom values:


#header .bottom-header .header-button-two{
    background: #f1d204;
}

And this css code for hover:

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

Thanks,

Cristian