I have a page with a Posts List, and the item list has the content set on the left side while the image is set on the right side. After updating to V 1.11.1.1 everything was reversed ignoring the settings. Only rolling back to V 1.11 solves the problem.
Hi,
Thanks so much for your report!
Unfortunately, I cannot reproduce the issue. Would you be so kind as to provide a live link and a screencast using https://jam.dev showing and explaining what’s happening?
Best regards,
timmse
Here is the link to the video:
This looks like a classic “outdated styles in cache” problem.
Please clear your cache if you are using a caching plugin and regenerate the styles if you are using external styles (Bricks “ Settings ” Performance).
Of course, I have tried that already before reporting; hence, the only solution is to revert versions to solve it. And no, there is no cache plugin since we are still in development.
Well, I can’t know that because I don’t have a live link, so I can only speculate. But that’s good! Caching during the development phase generally causes more problems than it offers any advantages
Back to the problem: Please send temporary login credentials and a link to this thread to help@bricksbuilder.io using the email address you used during the purchase.
@timmse I made a new bricks playground with the same bug. Sent the credentials as you requested.
Thanks so much for the login data! I identified the culprit: It’s an important statement introduced in 1.11.1 that overrides the “image on the right” rule.
You can temporarily fix it by adding this to the posts elements custom CSS:
%root% .bricks-layout-wrapper[data-layout=list].image-position-right .bricks-layout-inner {
flex-direction: row-reverse !important;
}
Thank you so much. That resolved the problem!