Hey @LukaDios this might be a CSS styling issue on your website. Right now you have your flex-wrap set as “nowrap”, which is great, however it might be narrowing everything down to the size of that one review box you’re trying to display (so it’s shrinking the element box to just show that space).
Instead, try using “wrap” and see what happens, or this CSS to force the block to take the entire row:
shopify-block.shopify-app-block {
flex: 1 1 100%;
width: 100%;
max-width: 100%;
}
#klaviyo-product-reviews-wrapper {
width: 100%;
max-width: 100%;
}
Either way, this looks like it’s your website CSS clashing with the Klaviyo reviews block’s instructions. You’ll have to tweak the code a bit until you find the right ratio.
Let me know if this solved the problem!