Support » Fixing WordPress » Nested unordered list in an ordered list

  • I have problems with embedding an unordered list in an ordered list. I am trying to do this:

    1. Digital Signal & Image Processing

    * Wavelet / Filter Banks
    * Compression
    * Image Interpolation
    * Edge Detection

    Instead, I am getting this despite using the ul and ol tags correctly:

    1. Digital Signal & Image Processing

    1. Wavelet / Filter Banks
    2. Compression
    3. Image Interpolation
    4. Edge Detection

    When I use the code on a non-Wordpress site it works perfectly. How do I make this work in WordPress? Here is the exact page: http://clydelettsome.com/blog/media-page/

Viewing 2 replies - 1 through 2 (of 2 total)
  • this style seems to be forcing the behaviour:

    .entry ol li {
    	list-style:decimal inside !important;
    	font-size:12px;
    	padding:3px 0px;
    	}

    if you remove the !important, the unordered list goes back to normal bullets (circles)

    or you can add a new style:

    .entry ol li ul li {
    	list-style:circle inside !important;
    	}
    Thread Starter calettso

    (@calettso)

    The second option worked. Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Nested unordered list in an ordered list’ is closed to new replies.