The Most Active and Friendliest
Affiliate Marketing Community Online!

“AdsEmpire”/  Direct Affiliate

css help please

webdesignyorkshire

New Member
affiliate
I have just taken on an already existing website and they wish to keep the look and feel. I am having problems getting the 2 classes to display! The style sheet is below and the address to see the code is selbybuilders.webdesignyorkshire .net

The 2 classes are = headbox and servicesbg. All images are online too, help!

Thanks in advance.

CSS:

td.textbox {
background-color: #6B1410;
padding: 5px;
}
.servicesbg {
background-color: #CE0000;
background-image: url(template_images\red_horz_bg.jpg);
background-repeat: repeat-x;
padding: 7px;
height: 25px;
}
.headbox {
background-image: url(template_images\above_header.jpg);
padding: 4px;
height: 25px;
}
body,td,th {
font-family: Geneva, Arial, Helvetica, sans-serif;
font-size: 10pt;
color: #FFFFFF;
}
body {
background-color: #333333;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
a:link {
color: #FFFF00;
font-weight: bold;
text-decoration: none;
}
a:visited {
text-decoration: none;
font-weight: bold;
color: #FFFF00;
}
a:hover {
text-decoration: underline;
font-weight: bold;
color: #FFFFFF;
}
a:active {
text-decoration: none;
font-weight: bold;
color: #FFFF00;
}
h1 {
font-size: 14pt;
}
h2 {
font-size: 12pt;
}
h3 {
font-size: 10pt;
}.images {
border: 1px solid #FFFFFF;
}
 
Try this one
HTML:
td.textbox {
background-color: #6B1410;
padding: 5px;
}
.servicesbg {
background-color: #CE0000;
background-image: url(/template_images/red_horz_bg.jpg);
background-repeat: repeat-x;
padding: 7px;
height: 25px;
}
.headbox {
background-image: url(/template_images/above_header.jpg);
padding: 4px;
height: 25px;
}
body,td,th {
font-family: Geneva, Arial, Helvetica, sans-serif;
font-size: 10pt;
color: #FFFFFF;
}
body {
background-color: #333333;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
a:link {
color: #FFFF00;
font-weight: bold;
text-decoration: none;
}
a:visited {
text-decoration: none;
font-weight: bold;
color: #FFFF00;
}
a:hover {
text-decoration: underline;
font-weight: bold;
color: #FFFFFF;
}
a:active {
text-decoration: none;
font-weight: bold;
color: #FFFF00;
}
h1 {
font-size: 14pt;
}
h2 {
font-size: 12pt;
}
h3 {
font-size: 10pt;
}.images {
border: 1px solid #FFFFFF;
}
 
MI
Back