hi there,
i have a section with a background image wich i would rotate 90° on devices below 768px.
i tried this code in Section=>Customize=>ElementCSS but it does not work.
@media (max-width: 767px) {
$el .x-bg .x-bg-layer-lower-image {
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
}
do you now what i am doing wrong?
thanks in advance