Home › Forums › WoodMart support forum › HEADER PROBLEM EMERGENCY › Reply To: HEADER PROBLEM EMERGENCY
August 23, 2023 at 9:14 am
#490631

Bogdan Donovan
Keymaster
By default, all color-scheme light header rows has black background, but you made custom code that changes it to your website background color (screenshot https://prnt.sc/j7Gq-WNb6sh0). The main issue is that your custom code is not working on all site pages due to insufficient specificity of CSS selectors. To fix this issue, try to replace your previous custom code with the following one:
.whb-row.whb-color-light:not(.whb-with-bg) {
background-color: #fcf7ef;
}
Kind Regards