Home Forums Lorina Pro Customizating the individual blog post view Reply To: Customizating the individual blog post view

#13404
Andy
Keymaster

Use this Additional CSS to change the ordering on the single post, moving the comments/reply section before the related posts section:

.single-post .site-main {
    display: flex;
    flex-direction: column;
}

.single-post .site-main article {
    order: 1;
}

.single-post .site-main .post-navigation {
    order: 2;
}

.single-post .site-main .related-posts {
    order: 4;
}

.single-post .site-main #comments {
    order: 3;
}