I’m constructing a page in Bootstrap Studio and using a hero section at the top of the page but the background image for the Div appears in the studio but when I Publish it there the image is covered by white. See it here: https://data.bss.design/index-1.html Does anyone have any thoughts on how to remove the white cover?
Thanks,
CJ
.card
that you use in <section class="py-xl-5 card header-text">
has the property: background-color: var(--bs-card-bg);
hth
On the div with the background image, you have an inline style z-index: -100;
. Remove that, and you will see the parallax effect.
Thank you Marrco! I adjusted the style and it now shows up.
Thank you very much, @kuligaposten. I tried removing the h-100 class name, and it didn’t work for me.