Muffin group you are great. I have one more question.
I would be very grateful for your help because I have the education site and I have many alerts.
I know how can I change the background and thanks ou very much for this but I have a problem because I would like have the same background in every alert - white and black words. I don't know how can I have a black font?? And I would like to have a white background with color frame.
Please help me. This is the last question. I promise!
The one you showed in your print-screen is correct, that one works - im speaking about the one that stays mainly yellow - only the .alert_warning .alert_icon works fot that one. Whyever...
Comments
we guess you mean SUCCESS alert. To change background color of this alert, you need to use the following css:
.alert_success { background: #000 !important; }.alert_success .alert_icon { background: #000 !important; }
.alert_warning { background: #000 !important; color: #FFF !important; }
.alert_warning a { color: #FFF !important; }
.alert_warning .alert_icon { background: #000 !important; color: #FFF !important; }
.alert_error { background: #000 !important; color: #FFF !important; }
.alert_error a { color: #FFF !important; }
.alert_error .alert_icon { background: #000 !important; color: #FFF !important; }
.alert_info { background: #000 !important; color: #FFF !important; }
.alert_info a { color: #FFF !important; }
.alert_info .alert_icon { background: #000 !important; color: #FFF !important; }
.alert_success { background: #000 !important; color: #FFF !important; }
.alert_success a { color: #FFF !important; }
.alert_success .alert_icon { background: #000 !important; color: #FFF !important; }
have you tried adding !important at the css statement?
thanks
.alert_warning {background: blue !important;
color: red !important;
}