Viewing 5 replies - 1 through 5 (of 5 total)
  • Try adding the following to the bottom of the stylesheet:

    #blog .post ul {
      margin-left: 10px;
      padding-left: 10px;
      margin-bottom: 15px;
    }
    #blog .post li {
      margin-bottom: 5px;
    }

    style.css of your theme resets the styles for the unordered list right at the beginning:

    * {
      list-style: none;
      margin: 0;
      padding: 0;
    ...

    you need to redifine the styles;

    example:

    #blog .post_part .post ul { list-style-type: disc; margin-left: 20px; padding-left: 0px; }
    #blog .post_part .post ul li { list-style-type: disc; }

    https://www.w3schools.com/css/css_list.asp

    Thread Starter KaddysComputerRepair

    (@kaddyscomputerrepair)

    I added what equalmark recommended but my blog still looks just about the same =/

    Do I need to take out

    * {
    list-style: none;
    margin: 0;
    padding: 0;

    <– im a noob

    Try what @alchymyth suggests. alchymyth is right in that you need to redefine your list type.

    Thread Starter KaddysComputerRepair

    (@kaddyscomputerrepair)

    Ok I added

    #blog .post_part .post ul { list-style-type: disc; margin-left: 20px; padding-left: 0px; }
    #blog .post_part .post ul li { list-style-type: disc; }

    instead of what you originally gave me. Still looks the same. Am I doing something incorrectly?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘lists not showing up correctly in blog’ is closed to new replies.