Viewing 2 replies - 1 through 2 (of 2 total)
  • The reason for the extra space is because there is a child list inside of a list and the border and padding and margin are being added twice.

    So I created this little snippet of CSS to target the last child of a child list and remove the double styling.

    .widget ul li ul li:last-child {
       border:none;
       margin-bottom:0;
       padding-bottom:0;
    }

    You can try it and see if it works. I see you have JetPack enabled. You can put it in your custom CSS file.

    Cheers, Stacy

    Thread Starter jlshull6

    (@jlshull6)

    Stacy, I realized I hit resolved without even thanking you. SO sorry! What you suggested worked. ?? However, I just moved a folder under different folder, and this problem is back. I tried putting this in the CSS again, but it didn’t seem to do anything. Any suggestions?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to remove the space in between categories’ is closed to new replies.