html - How can I make this background to see full? -


i have page:

link

unfortunately can see in picture below, background incomplete. missing top menu bar.

http://i59.tinypic.com/259vg5f.jpg

this code css:

body{    background: url(http://dg-site.com/bagel/imagini/rsz_1home.jpg) no-repeat center center fixed;    -webkit-background-size: cover;   -moz-background-size: cover;   -o-background-size: cover;   background-size: cover;  } 

how can solve problem? tried make image smaller , still not go. somehow descends below background?

thanks in advance!

try css

body{    background: url(http://dg-site.com/bagel/imagini/rsz_1home.jpg) no-repeat center center fixed;    -webkit-background-size: 100% 100%;   -moz-background-size: 100% 100%;   -o-background-size: 100% 100%;   background-size: 100% 100%;  } 

Comments