• Resolved jstoll

    (@jstoll)


    I need custom CSS to remove the whitespace between the paragraph and the list blocks. I have looked up different solutions, but nothing I have tried seems to work, but I don’t think those solutions were specific to this theme.

    To be more specific, in my website I have linked, I need the space between “Absences” and “Attendance Procedures” to disappear. I can do this with the page’s HTML, but want a CSS solution so I don’t have to worry about it on other pages, either.

    Thank you in advance!

    The page I need help with: [log in to see the link]

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

    (@jstoll)

    I finally figured it out. I noticed via inspect that what I was typing in the custom CSS was essentially being ignored. Final solution in case anyone else ever needs help:

    p {
    	margin-bottom: 0px !important;
    }
    ul {
    	margin-top: 0px !important;
    }
Viewing 1 replies (of 1 total)

The topic ‘Remove Whitespace between blocks’ is closed to new replies.