Home › Forums › WoodMart support forum › Color Theme clashing with Dokan Dashboard? › Reply To: Color Theme clashing with Dokan Dashboard?
August 11, 2021 at 3:00 pm
#312075
Bogdan Donovan
Keymaster
By default, Woomdart theme have warning and info notices designed in one color. Dokan support in our theme is implemented in the way that Dokan notices inherit design from Woodmart theme, where there is no difference in color between this two type of notices.
If It’s important to you, Dokan notice’s color can be changed by adding the following custom code:
1. For info notices
.website-wrapper .dokan-alert.dokan-alert-info {
background-color: #d9edf7;
color: #31708f;
}
2. For warning notices.
.website-wrapper .dokan-alert.dokan-alert-warning {
background-color: #fcf8e3;
color: #8a6d3b;
}
Kind Regards