Hello, @amfa!
Can you give me the address to your website?
Thread Starter
amfa
(@amfa)
Hello, @amfa!
If you want the contents to be in a fixed width (boxed) and just the image to be the full width,
you can use this custom CSS code (Insert it into Customicing->General->Additional CSS):
.wp-block-image.alignfull {
width: 100vw;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
}
Also, the following should work well:
.wp-block-image.alignfull {
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
}
Regards