I have a problem that has me stunned. I have a CSS that gets applied correctly on some pages, and does not get applied on other pages. On the “wrong” pages, it works correctly inside the builder.
Examples for correct pages:
https://stria.tech (The section “OUR PRODUCTS”)
https://stria.tech/optodrum (The section “ACCESSORIES”)
The CSS code is applied to the whole section, the purpose is to style the images in each column. Each Image element has the class “accessory-image”:
$el .accessory-image img {
margin-left: auto;
margin-right: auto;
height: 200px;
object-fit: cover;
}
If you inspect the element with the developer tools, all is good (Screenshots are from Firefox “Inspect” tool).

The custom CSS gets applied:

Here is an example for a “wrong” page. Same setup, and it works inside the builder, but is not displayed properly in the front-end:
https://stria.tech/scotopickit (Section “ACCESSORIES AND RELATED PRODUCTS”)

But the custom CSS does not get applied:

I don’t understand it. By the way, the CSS works on the wrong page if it is directly applied to the Image elements themselves.
