What is the best way to change the background color of bootstrap-sweetalert ? this is my code
.sweet-alert
{
background-color: #2f2f2f96;
}
$(".sweet-alert").css("background-color","#2f2f2f96");
What is the best way to change the background color of bootstrap-sweetalert ? this is my code
.sweet-alert
{
background-color: #2f2f2f96;
}
$(".sweet-alert").css("background-color","#2f2f2f96");
update your sweetalert.css with your coding and hard refresh your web browser. It should work.
.sweet-alert {
background-color: #2f2f2f96;
...other codings...
}