Site logo

Archived topic

Adjust spacing in archives document

9 replies · Started by celito on April 17, 2016

Viewing posts 1–10 of 10

I have a LearnDash page called Course List which is based on the WordPress' archives file. How can I reduce the space between the the last line of the previous paragraph and the header (h2, h3) of the next paragraph? Tried looking at archives.php but still has no idea how to bring the elements closer. Thanks.

Hi there,

Any chance you can link me to the page?

Hi Tom,

Thanks for the quick reply. The page in question is at http://accounteach.net/?post_type=sfwd-courses.
The page is automatically created by LearnDash based on the courses that were created, based on WordPress archives.

Celito

Hi,

Give this a try

.one-container .inside-article {
    padding: 0 0 0 0;
}

I cant guarantee that it wont change other pages but works on this particular page.

Couple things will help here:

footer.entry-meta {
    display: none;
}

.post-type-archive-sfwd-courses .type-sfwd-courses {
    margin-bottom: 0;
}

Thanks Jamal, it improved the appearance for this page.

Thanks Tom, this did it; even tried negative values for margin-bottom and was able to manipulate that white space. I failed to ask though how to reduce that space

    after the header

.

.

The space below the title? Try this:

.post-type-archive-sfwd-courses .type-sfwd-courses .entry-content {
    margin-top: 10px;
}

Thank you so much. Now I got them where I want them. Really appreciate it.

You're welcome :)

This archived topic is closed to new replies.