View Single Post
  #13 (permalink)  
Old Oct 10th, 2006, 15:55
Accurax Accurax is offline
Reputable Member
Join Date: May 2006
Location: Northampton, UK
Posts: 399
Thanks: 0
Thanked 0 Times in 0 Posts
Re: CSS Image swap issue

Thats what i have

heres the code for the acual list :

Code: Select all
  <div id="divLeft">
    <ul id="ulmainnav">
      <li>Accounting Services & Hosted Software</li>
      <li>Payroll Services</li>
      <li>Credit Controll</li>
      <li>Archiving Solutions</li>
      <li>Cost Down Programs</li>
      <li>Quality Systems</li>
      <li>Business Planning</li>
      <li>Search & Selection</li>
      <li>Marketing Solutions</li>
      <li>VOIP Solutions</li>
      </ul>
  </div>
heres the CSS for the Li items in the list, i havnt even started turning them into links yet you see:

Code: Select all
#ulmainnav li {
    list-style-type: none;
    text-align: left;
    padding:0;
    margin:0;
    width: 120px;
}
And heres the CSS for the Div its all contained in:

Code: Select all
#divLeft {
    float: left;
    width: 120px;
    background-color: #C4D0E7;
    line-height: normal;
    clear: right;
}
Thanks again
Reply With Quote