spuppett
February 1st, 2005, 12:11 PM
I am brand-spanking new to this here CSS. I am looking for a way to put 2 stripes on my website. One on the right, and one on the left. I have
body
{
background-color: #FFFFFF;
background-image: url(../images/Yellow.gif);
background-repeat: repeat-y;
font-family: Verdana, Geneva, Arial;
color: #7D1400;
margin: 0px
}
I guess you cant do 2 background the body. I tried doing a
.rightBar
{
background-position:right;
background-color: #FFFFFF;
background-image: url(../images/Yellow.gif);
background-repeat: repeat-y;
font-family: Verdana, Geneva, Arial;
color: #7D1400;
}
and then in the body of the I put <DIV class="rightBar"></DIV>, but nothing showed up.
Any suggestions on how I could accomplish this??
body
{
background-color: #FFFFFF;
background-image: url(../images/Yellow.gif);
background-repeat: repeat-y;
font-family: Verdana, Geneva, Arial;
color: #7D1400;
margin: 0px
}
I guess you cant do 2 background the body. I tried doing a
.rightBar
{
background-position:right;
background-color: #FFFFFF;
background-image: url(../images/Yellow.gif);
background-repeat: repeat-y;
font-family: Verdana, Geneva, Arial;
color: #7D1400;
}
and then in the body of the I put <DIV class="rightBar"></DIV>, but nothing showed up.
Any suggestions on how I could accomplish this??