مرحبًا بالجميع، كيف يمكنني تغيير لون الزر الافتراضي البرتقالي؟
لقد قمت بتغييره إلى لون سداسي الأرقام المطلوب في الإعدادات > تخصيص > الألوان، لكن الأزرار لا تزال باللون البرتقالي الافتراضي.
Can you include a screenshot of the button in question and your colour settings? ![]()
Yes, definitely! Just added them
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? 
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!!


