Hi,
I Have two overlaping sections on my website https://www.scheiden-online.nl. On the homepage you see a slider on top and two columns (one is a video) underneath. These two columns were overlapping partly with the slider. Since the last update they have moved down and are no longer overlapping.
This is the css that still is implemented, but no longer seems to work:
@media (min-width:768px) {
.overlapping-class{
position:relative;
top:100px;
}
}
.up-overlapping-class {
margin-bottom: 2em !important;
}
@media (min-width:768px) {
.up-overlapping-class {
position:relative;
top:-150px;
margin-bottom: 0 !important;
}
}
.x-section {
clear: both;
}
.verticalLine {
border-left: solid #9aaf24;
}
@media (min-width: 768px) {
.x-section .x-container.swapcolumns {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
}
Could you help me out?
Thanks
Auke