Spinner color in mini cart of woocommerce #897
Answered
by
crftwrk
klausvennik
asked this question in
Q&A
-
Hi i cant find the way to change the color of the spinner of mini cart in woocommerce using bootscore. |
Beta Was this translation helpful? Give feedback.
Answered by
crftwrk
Dec 14, 2024
Replies: 1 comment 1 reply
-
You have just roughly overridden your primary, danger etc. colors but the origin blue/red still exists. For example the cart count badge: .bg-danger {
background-color: #355F2E !important;
} This is the wrong way. Define theme colors in child-theme's $primary: #355F2E; All blue is now green. Check https://bootscore.me/documentation/theme/css-scss-compiler/ how to change Bootstrap colors correctly. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
klausvennik
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You have just roughly overridden your primary, danger etc. colors but the origin blue/red still exists. For example the cart count badge:
This is the wrong way. Define theme colors in child-theme's
_bootscore-variables.scss
:All blue is now green. Check https://bootscore.me/documentation/theme/css-scss-compiler/ how to change Bootstrap colors correctly.