Hi there, I’ve got a gradient background in custom css:
( welcome.dls-jersey.co.uk )
body {
background: #1e73be; /* Show a solid blue color for older browsers */
background: -moz-linear-gradient(#1e73be, #ffffff);
background: -o-linear-gradient(#1e73be, #ffffff);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1e73be), to(#ffffff)); /* older webkit syntax */
background: -webkit-linear-gradient(#1e73be, #ffffff);
How can I make sure that the size of the background to “covers” the whole page as I sometimes get a blue bar at the bottom of a large browser window?
Thanks