Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Scroll-Over Effect with 100% width elements Reply To: Scroll-Over Effect with 100% width elements

#165629
Paulie_D
Member

You should try adding a bottom value

#splashContainer {
z-index: -2;
overflow: hidden;
background-color: black;
width: 100%;
height: auto;
top: 0;
left: 0;
bottom: 0; /* like this */
position: fixed !important;
}

Tha may have knock on consequences but it seems to extend the bg color as required.