Hello,
To customize the header background on specific pages using CSS, use the following examples:
For the single product page:
.single-product .whb-general-header {
background-image: linear-gradient(90deg, #3369A4 30%, #3297AA 100%) !important;
}
For the blog page:
.blog .whb-general-header {
background-image: linear-gradient(90deg, #3369A4 30%, #3297AA 100%) !important;
}
If you want to target a specific page, use the unique page ID in the body class. For example, for a page with ID 123, use:
.page-id-123 .whb-general-header {
background-image: linear-gradient(90deg, #3369A4 30%, #3297AA 100%) !important;
}
Best Regards,