No Bullets or Numbers for UL, OL

Home Forums Forum No Bullets or Numbers for UL, OL

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #731
    DeVaultSetter
    Keymaster
        Unordered List
        Unordered List
        Unordered List
        Unordered List
        Ordered List
        Ordered List
        Ordered List
        Ordered List

      Edit: Possible fix from this thread:

      #bbpress-forums ul.bbp-replies .reply-content-bubble ol {
      list-style: decimal;
      padding-left: 20px;
      margin-bottom: 20px;
      }

      #bbpress-forums ul.bbp-replies .reply-content-bubble ol li {
      list-style: inherit;
      }

      #bbpress-forums ul.bbp-replies .reply-content-bubble ul {
      list-style: disc;
      padding-left: 20px;
      margin-bottom: 20px;
      }

      #bbpress-forums ul.bbp-replies .reply-content-bubble ul li {
      list-style: inherit;
      }

      Originally thought that OL UL would operate around a block of text separated by carriage returns rather than each line. This would have made nesting of OL UL blocks workable, and easier to apply.

      #735

      Each item in a list needs to be denoted with the list item tag. The list type tags contain them and are only used once.

      • test
      • test
      <ul>
      	<li>test</li>
      	<li>test</li>
      </ul>
      

      🙂

      #741
      DeVaultSetter
      Keymaster

        Oops, didn’t refresh the page, in any case the edit there looks to have turned out to be rather redundant. 😛
        Forgot clean about the LI, thanks. 🙂
        Still, dispensing with the LI button, and replacing the UL button with something like this code might be more usable:

        <ul> <li>Unordered item</li> <li>Unordered item</li> <li>Unordered item</li> <li>Unordered item</li> </ul>

        The above-mentioned nesting hopefully works a bit better with something like this:

        
        <ul>
        	<li
        		<ul>
        		<li>Unordered item</li>
        		<li>Unordered item</li>
        		<li>Unordered item</li>
        		<li>Unordered item</li>
        		</ul>
        	>
        </ul>
        
        #762

        When trying to make nested lists, the UI pukes. Instead of creating a new list tag, it wants to close the main list. So one needs to manually type in the tag structure if they want to make a nested list. Annoying!

        #932
      Viewing 5 posts - 1 through 5 (of 5 total)
      • You must be logged in to reply to this topic.

      Home Forums Forum No Bullets or Numbers for UL, OL