Home › Support Forums › Theme Support › Enlightenment › Update 1.1.2 and its effect on (frontpage) slider › Reply To: Update 1.1.2 and its effect on (frontpage) slider
bo-oz
Participant
I think I found it, it is caused by CSS fortunately. Probably because you cannot configure your sidebars in 1.1.2, so ‘paralax’ is the default. Use this is your custom CSS (theme options -> design)
.background-parallax {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
(the trick was removing: height: calc( 100vh / 4 + 100% );)