Hello there,
I have a page where every other child (even) has an offset, to differentiate from the main/odd styling.
super simple code:
@media screen and (min-width: 768px) {
.portfolio-looped-item:nth-child(even) {
direction: rtl;
}
}
How can I target the even child to reverse the parallax? I notice data-x-element-bg-layer
has the "parallaxRev":true
which I can’t change in Chrome Dev Tools, it just disappears as soon as I click into it.
Thank you for your help in advance!