23.03.2020, 08:01
This means that there's some other CSS rule with higher priority that over-rides your rule.
You can use !important rule to fix this:
You can use !important rule to fix this:
Code:
.control-spinner .btn {
background-color: #f90;
background-image: none;
border-color: #000;
border-radius: 0 !important;
}