19.10.2017, 19:11
(This post was last modified: 19.10.2017, 19:12 by Erwin van der Zwart.)
Hi,
Give your elements a custom class like ontop and onbottom and use this as custom css:
Depending on the original z-index of the elements, you might need to change the 60 and 80 value
BR,
Erwin
Give your elements a custom class like ontop and onbottom and use this as custom css:
Code:
.ontop {
z-index: 80 !important;
}
.onbottom {
z-index: 60 !important;
}
BR,
Erwin