Home › Forums › CSS › Scroll-Over Effect with 100% width elements › Reply To: Scroll-Over Effect with 100% width elements
March 13, 2014 at 2:45 am
#165629
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.