Hi Sandra,
Thanks for reaching out to us.
Yes — this behavior is normal because the Accordion expands in document flow, so it pushes surrounding content down.
If you want the accordion to open over the content (without moving anything below it), you need to switch the dropdown panel to absolute positioning, and make sure the parent is positioned relatively.
Solution using custom CSS, Please, use this custom css in your template styles custom code -> custom css
#sppb-addon-Uyx3kM2tolXkb4YvfmV23 {
position: relative;
z-index: 10;
}
#sppb-ac-content-Uyx3kM2tolXkb4YvfmV23-key-0 {
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 999;
background: #fff;
}
Thanks