View Full Version : background repeat


JoshHartnettGrl
07-13-2003, 07:36 AM
for some reason the background image of my site repeats even though I put a no-repeat in the CSS! Here's the url
http://jenn.midheaven.net/v3.html
and here's the CSS
<style type="text/css">
BODY
{
background-repeat: no-repeat;

scrollbar-3dlight-color: #040F60;
scrollbar-arrow-color: #000000;
scrollbar-base-color: #040F60;
scrollbar-darkshadow-color: #040F60;
scrollbar-face-color: #FFFFFF;
scrollbar-highlight-color: #040F60;
scrollbar-shadow-color: #040F60;
scrollbar-track-color: #040F60;

}

A:link { COLOR: #040F60; text-decoration: none; cursor: crosshair;}
A:visited { COLOR: #040F60; text-decoration: none; cursor: crosshair;}
A:active { COLOR: #040F60; TEXT-DECORATION: none; cursor: crosshair;}
a:hover { text-decoration: underline overline; color:#233BED; cursor: crosshair;}

body,tr,td, h6, p, li
{font-size: 8pt;
font-family: verdana;
color:#24057D;
letter-spacing:0pt;}

h6
{font-size: 10pt;
font-weight:normal}

input, textarea
{color: #24057D;
background-color: transparent;
font-size: 8pt;
font-weight: normal;
text-decoration: none;
font-family: verdana;
text-align: center;
border-width: 1px;
border-style: dotted;
border-color:#24057D;
}

-->
</style>

Shaneo
07-13-2003, 09:42 AM
You have to take background="v3.jpg" out of the body body tag and put it in the css and also you don't need a seperate body tage for each command or wuteva.. u can just use the one..

What You Have
<body style="background-color:transparent">
<body scroll="no"><body background="v3.jpg">

What You Should Have
<body style="background-color:transparent" scroll="no" background="v3.jpg">

(except without the background="v3.jpg" because as i mentioned above, it goes in the css..

What Your Css Should Look Like
<style type="text/css">
BODY
{
background-image: url("v3.jpg");
background-repeat: no-repeat;

scrollbar-3dlight-color: #040F60;
scrollbar-arrow-color: #000000;
scrollbar-base-color: #040F60;
scrollbar-darkshadow-color: #040F60;
scrollbar-face-color: #FFFFFF;
scrollbar-highlight-color: #040F60;
scrollbar-shadow-color: #040F60;
scrollbar-track-color: #040F60;

}

A:link { COLOR: #040F60; text-decoration: none; cursor: crosshair;}
A:visited { COLOR: #040F60; text-decoration: none; cursor: crosshair;}
A:active { COLOR: #040F60; TEXT-DECORATION: none; cursor: crosshair;}
a:hover { text-decoration: underline overline; color:#233BED; cursor: crosshair;}

body,tr,td, h6, p, li
{font-size: 8pt;
font-family: verdana;
color:#24057D;
letter-spacing:0pt;}

h6
{font-size: 10pt;
font-weight:normal}

input, textarea
{color: #24057D;
background-color: transparent;
font-size: 8pt;
font-weight: normal;
text-decoration: none;
font-family: verdana;
text-align: center;
border-width: 1px;
border-style: dotted;
border-color:#24057D;
}

-->
</style>