Hi,
I have a cell where I want to set different Z-Indexes for different screen sizes. For example, for 480px and 767px, I want the Z-index of the cell to be one value, and for the other screen sizes, a different value.
Is this possible?
Thanks in advance!
Gunes
Edit: I inserted this to the Element CSS box of the cell, but it is not working.
@media only screen and (max-width: 979px) {
$el.x-cell {
z-index: 9999;
}
}