Hi,
unfortunately the parallax effect for background images of sections is not working. When I set the background image to parallax in Cornerstone, the div gets the css class parallax (which defines background-attachement: fixed). So far so good…but I try it, the div element automatically also defines a background-attachement: scroll style directly in the element. That overwrites the class parallax.
Whats going on there? Is that a known bug?
I fixed it for myself. Added the following to the style.css of my child theme (!important):
.x-section.bg-image.parallax, .x-section.bg-pattern.parallax {
background-attachment: fixed !important;
}
Thanks, Julien