Centering Older Posts

Hey guys,

I’m looking to center “Older Posts” on the homepage and category pages.

Thanks

Hi @adampuddicombe,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

#primary nav.navigation.paging-navigation {
    display: table;
    margin: 0 auto;
}

Best Regards,
Movin

Thanks Movin. All good.

However, one issue. On pages with “Older Posts” and “Newer Posts” there’s no padding. See attached. How do I fix this?

Could you please share me the page URL from your site where it is not displaying correctly so that i can troubleshoot it?

Hey Movin,

http://dev.sportsbusinesscanada.com/category/adam-puddicombe/page/2/

Thanks for your help here.

You can use below Custom CSS code to add padding between them.


#primary nav.navigation.paging-navigation .nav-previous{
    margin-right: 15px;
}