• Resolved Brian_Tomasik

    (@brian_tomasik)


    The “spacious” theme seems to put significantly more white space after the end of a list (whether ol or ul) than before the list. For example, see the two unordered lists in this page. Where in the CSS can I modify this setting to make the white space equal above and below the list?

Viewing 1 replies (of 1 total)
  • Thread Starter Brian_Tomasik

    (@brian_tomasik)

    A friend pointed me to the answer. I had to modify the following entry in the CSS:

    .entry-content ul,
    .entry-content ol {
    	padding: 0 0 0 35px;
       margin-bottom: 30px;
    }

    In my child theme, I changed it to

    .entry-content ul,
    .entry-content ol {
    	padding: 0 0 0 35px;
       margin-bottom: 15px;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Too much space below ul and ol’ is closed to new replies.