css bug.

Out of context: Reply #8

  • Started
  • Last post
  • 10 Responses
  • Stugoo0

    First off id start by declaring all your items at the start of the document that you are going to be using then bring your margins in from there..
    i.e (grabbed this from one of my stylesheets)
    ul {
    margin: 0px 10px 10px 0px;
    padding: 0px 0px 0px 0px;
    }

    li {
    font-size: 12px;
    color: #666666;
    font-weight: bold;
    list-style: circle outside;
    margin: 0px 0px 0px 25px;
    }

    looking at your source code
    you have li style=" " on the offending objects. try taking them out. it might save the day.

    on a further note you should try declaring the majority of the items at the top of the css doc too rg, h1, h2,h3, a, ul, li, p, and i normally have colour changing spans too.

View thread