• Been working on this one for a while and still can’t figure out why I can’t get my numbered lists to indent. Here is the code from the stylesheet, the site is mijio.com: `.menu ul { padding: 0px; margin: 0px; list-style: none; width: 890px; float: left;}

    .menu ul li { display: inline; }

    .menu ul li a { width: 140px; display: block; float: left; padding: 10px 0 12px 0; font-size: 15px; color: #0685BB; font-weight: bold; text-transform: uppercase; text-align: center; }

    .menu ul li.current_page_item a { background: #ffffff url(images/menulinktop.jpg) no-repeat center top; color: #058DAA; }
    `

Viewing 1 replies (of 1 total)
  • Try adding something like this to your style.css file:

    /**** Lists ****/
    div.postcontent ol, div.postcontent ul {
    margin:1em 2em;
    }
    div.postcontent li {
    margin:0 1em 0.5em;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Indent numbered list’ is closed to new replies.