Hello @zenzino,
Sorry for the confusion. I was focus on the overflow and not the direction where you want the overflow to display. By default, the background images are aligned to the left side of the container. In this case, it is aligned to the left side of the Column element. This setting is built into the theme styles.
If you want the background image to overflow to the left, the background image alignment should be changed to the right side. Thus, the custom CSS added in the Section element needs to be changed from:
$el > .x-row > .x-row-inner > .x-col .x-bg {
width: calc(100% + 8rem);
}
into this one:
$el > .x-row > .x-row-inner > .x-col .x-bg {
width: calc(100% + 8rem);
left: auto;
right: 0;
}
Be advised that custom CSS is beyond the scope of our support under our Support Policy. If you are unfamiliar with code and resolving potential conflicts, you may select our One service for further assistance.
The inline custom CSS added to the Crafty demo is for demo purposes. Any modifications to these custom codes that changes the look and feel of the demo layout is also considered custom development already.
Thank you for your understanding.