Announcement

Collapse
No announcement yet.

Background Images - using 'image'.gif

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Background Images - using 'image'.gif

    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;
    }

    #2
    I've got this to work. It was an issue with the external css I'm using regarding classes and divs, unsure why what I was doing wasn't working but maybe the more competant in css I become I'll be able to figure that one out!

    Comment

    Working...
    X