按钮颜色变化

大家好,如何更改默认的橙色按钮颜色?
我已在“设置”>“自定义”>“颜色”中将其更改为所需的十六进制颜色,但按钮仍保持默认的橙色。

Can you include a screenshot of the button in question and your colour settings? :slight_smile:

Yes, definitely! Just added them

Oh right. The issue here is that that is not a button. :slight_smile:

Use your Chrome inspector to find the CSS to target.

Thanks, I was able to find it. The “background-color” isn’t a color item in Settings>Customize>Colors. Is this something I’d have to edit programmatically? 29%20PM

Correct. You can write some simple CSS.

Navigate to your active theme at /admin/customize/themes/ and customise the CSS.

Adding this rule will make them green.

.nav-pills li.active a, .nav-pills li a.active {
color: #fff;
background-color: #090;
}

Fantastic, it worked like a charm.
THANKS!!