Help - Search - Members - Calendar
Full Version: Can someone Help me please!
Forums > Resource Center > Webmasters' Corner > Webmasters' Corner Resolved Topics
Catsrulexxx
Well Im making a website, everything was going good until I tried to get the background image from repeating. Now my whole site background is white. What am I doing wrong? Please can someone help me?


QUOTE
<style type="text/css">
body {font-size: 12pt;
Font-family: "papyrus";
color: #999999;
background-color: transparent;
background: url('http://www.guildwars.com/images/homepage/home-bg2.jpg')
background-repeat: no-repeat;
background-attachment: fixed;}


b {color: #FF0000;
text-decoration: blink;}

a {text-decoration: none;}
a:link {color: #990000;}
a:visited {color: #00FFFF;}
a:active {color: #00CC33;}

</style>
freeflow
Change:
CODE
background: url('http://www.guildwars.com/images/homepage/home-bg2.jpg')
background-repeat: no-repeat;


to:
CODE
background: url("http://www.guildwars.com/images/homepage/home-bg2.jpg");
background-repeat: no repeat;


or
CODE
background: url("http://www.guildwars.com/images/homepage/home-bg2.jpg");
background-repeat: no-repeat;
Catsrulexxx
YAY it works thank u very much!
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.