My background image aone.gif isn't showing on my page. Adding ' ' around the image made a difference else where on my site but not here. Is there something I need to do in Actinic or is it a CSS issue? My colour is also not appearing when I view the site. Below is all the css relating to the page.
Code:
div.serviceswrap{
width: 187px;
}
div.servicetop{
width: 187px;
height: 20px;
padding-top:30px;
}
div.servicemiddle{
width: 187px;
height: 25px;
background-image:url('aone.gif');
background-repeat:repeat-y;
background-color:#CC3333;
}
div.servicebot{
width:187px;
height:12px;
}
/* Services List */
#navlist
{
margin-left: 0;
padding-left: 50px;
padding-top: 10px;
list-style: none;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 1.2em;
line-height: 15px;
}
#navlist li
{
padding-left: 15px;
background-image: url('arrow.gif');
background-repeat: no-repeat;
background-position: 0.1em;
list-style: none;
font-size: 1.2em;
}
Comment