Stacks applies ‘overflow:hidden’ on all containers, so it is not feasible to pull elements outside of their container with negative margins or positioning. Otherwise the elements will simply be hidden from view.
What I think you will need to try instead is to apply padding to the left and right sides of the slider like this:
.bx-wrapper {
padding: 0 40px !important;
}
That will push the content in from the sides and provide enough space to display the arrows.
Stuart-
Thank you, yes, I know enough to change the #s, just not the code itself. This works perfectly. The link you posted is really helpful. I’ve never seen that before. I’ll have to explore further
Lisa