you got 2 ways to fix that problem:
1.
use this as your background : http://www.netu.co.il/help1/images/background.jpg
go to to your body properties and set it to:
Code:
body
{
text-align: center;
background-image: url(../images/background.jpg);
background-repeat: repeat-x;
background-color: #3CACEE;
color:#ffffff;
}
this will quickly load the background image and in case the background will load slowly, i set the background color to a kind-of-a-blue color and there wont be a flickering issue.
and in case your site's height will be longer in the future, the color will fit the bottom part of the background gradient.
2.
the second way is not using any images and draw a gradient background:
Code:
body
{
text-align: center;
background-color: #3CACEE;
color:#ffffff;
background: #0760d6; /* Old browsers */
background: -moz-linear-gradient(top, #0760d6 0%, #37a3ec 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0760d6), color-stop(100%,#37a3ec)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #0760d6 0%,#37a3ec 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #0760d6 0%,#37a3ec 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #0760d6 0%,#37a3ec 100%); /* IE10+ */
background: linear-gradient(top, #0760d6 0%,#37a3ec 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0760d6', endColorstr='#37a3ec',GradientType=0 ); /* IE6-9 */
}
Bookmarks