I'm seeing a double background gradient on this page in Google Chrome.... any ideas why?
http://www.starcraft-source.com/member/login/
I need it to be the solid blue color
I'm seeing a double background gradient on this page in Google Chrome.... any ideas why?
http://www.starcraft-source.com/member/login/
I need it to be the solid blue color
You mean the additional background gradient that appears below the footer?
html {
background:-moz-linear-gradient(center bottom , #1A405D 70%, #0A1C2D 92%) repeat scroll 0 0 transparent;
}
Needs to be
html {
background:-moz-linear-gradient(center bottom , #1A405D 70%, #0A1C2D 92%) no-repeat scroll 0 0 transparent;
}
You shouldn't be repeating this kind of gradient background.
Of course, now you'll need to deal with whitespace below the footer, but that's a different issue.
Personally, I'd avoid styling the html element. You can use the gradient on the background-image, to free up background for a colour. I'd use the following:
body{
background: #1A405D;
background-image: -webkit-linear-gradient(#0A1C2D,#1A405D);
background-image:-moz-linear-gradient(center bottom , #1A405D 70%, #0A1C2D 92%);
background-repeat:no-repeat;
}
This would give you a result as follows: http://jsfiddle.net/Sapphion/QJwA6/