I"m using the Posts Element with the standard Post Query on the Blog page. I added a Box Shadow to the Posts Element (I made it very visible) and it’s getting clipped on the Bricks Container’s left and right sides. This seems like a bug. I haven’t been able to fix it with CSS.
This is a dev site and only this page will display.
The posts element uses an overflow: hidden by default, that cuts the shadows.
There are two ways to fix the problem:
Set the overflow of the post elements to overflow: visible. I’m not sure if the overflow: hidden is still necessary, so please see for yourself if it leads to problems.
root {
overflow: visible;
}
Add a padding left/right to the posts element. The disadvantage is that the posts won’t align with the edges of your container, but the shadows are visible.
Hey,
The overflow setting applies to “.bricks-layout-inner”, not the “root wrapper”. That’s the reason why it doesn’t work, because the root wrapper still has overflow: hidden.
I’ll have to test if the overflow: hidden is necessary on the root. If not, we can remove it. However, as long it exists, it’s easy to fix.