Opaque background on body does not fit page

Hi there Kako,

replace this…

html {
    width: 100%;
    height: 100%;
    background: url('http://www.fg-a.com/wallpapers/geo-shapes-black-1280.jpg') no-repeat fixed  center;
    background-size: cover;
 }

body {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.35)
}

…with this…

html,body {
    height: 100%;
    margin: 0;
    background: url(http://www.fg-a.com/wallpapers/geo-shapes-black-1280.jpg) no-repeat fixed center;
    background-size: cover;
 }
#page {
    position: fixed;
    z-index: 9999;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.35);
 }

coothead

1 Like