hi!
is it possible to make this banner also grey? but not over the whole website, only when I press on a product
password: Christianshop123
thanks!
hi!
is it possible to make this banner also grey? but not over the whole website, only when I press on a product
password: Christianshop123
thanks!
Hello @christian_russo
{% if template contains 'product' %}
{% endif %}
it doesn’t work ![]()
Hello @christian_russo
I have edited the reply please copy and paste it now.
thank you! it worked! is there also a way to make it transparent?
Hello @christian_russo
YES
just change the value of background from #dcdcdc to transparent
like below
background: #dcdcdc !important;
TO
background: transparent !important;
thank you! it worked perfectly!
I got 1 last question is it also possible to make it transparent when I scroll through my products?
thanks!
You can add below lines in base.css at the bottom of the file.
.header-wrapper {
background: transparent;
}
that doesn’t work ![]()
Try this
.header-wrapper.color-background-2 {
background-color: transparent !important;
}