Slider on mobile device

Hi.
We are working on this page: test.blommenhofutbildning.se
You have previously helped us with this css code:
.page-id-954 .masthead {
position: absolute;
width: 100%;
}
To make the area above the navigation transparent and make the slider visible through. This effect, however, doesn’t really work on a mobile device. Is there any way to adjust the code and make the effect work on a mobile device? Or should we go for another way to do it.

Tomas

Hi Tomas,

Thanks for reaching out.

It seems to be working fine, may I know what you intend to do in mobile view? Or perhaps you don’t wish to affect the mobile view by that CSS? If yes, then you should change it to something like this

@media ( min-width: 768px ) {

.page-id-954 .masthead {
position: absolute;
width: 100%;
}

}

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.