• Resolved MountainDewAddict

    (@mountaindewaddict)


    Hello!

    It seems lists wont work at my wordpress site.

    I use it as descriped, starting with

    • Item 1
    • Item 2
    • Item 3

    But it doesnt show the dots or the list itself.
    If i just use

    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>

    without the
    <ul></ul>

    around it, it shows a list, but the dots are small and it doesnt look very good.

    Is there any workaround for this?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Can you share a link to your site? It is probably a styling/CSS issue with your theme.

    Without seeing your site its a little difficult but Mark is right, its probably a CSS issue. You should always have the UL tag around your LI items.

    Thread Starter MountainDewAddict

    (@mountaindewaddict)

    https://www.survival-sandbox.de/dayz-standalone/

    Thats my site, used the 2nd method i mentioned at the end of the post.

    Make sure that the LI items are wrapped in a UL. This is essential for proper coding.

    Also, make sure there are no P items in between the LIs.

    Basically, what you have now:

    <li>Item 1</li>
    <p>&nbsp;</p>
    <li>Item 2</li>
    <p>&nbsp;</p>
    <li>Item 3</li>
    <p>&nbsp;</p>

    You have to make sure this becomes:

    <ul>
       <li>Item 1</li>
       <li>Item 2</li>
       <li>Item 3</li>
    </ul>

    Check it in the TEXT tab of your editor window (not the VISUAL tab).

    Start with that, and if the bullets don’t appear (they should!), show it to us so we can have a look.

    Thread Starter MountainDewAddict

    (@mountaindewaddict)

    I already found out what it was – i accidently removed the code that lead to the icon graphic… *facepalm*

    Thanks for your help anyway. ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Lists not working?’ is closed to new replies.