Sorry, it won’t let me register to sign in to comment on my last post. It will only allow me to ask a new question. This is a follow up on this your reply asking for a page URL.
The page where the pagination is being displayed vertical instead of horizontal can be found here: http://ihmcathedral.com/bulletins/
Thank you for your help.
The page where the pagination is being displayed vertical instead of horizontal can be found here: http://ihmcathedral.com/bulletins/
Thank you for your help.
1 Answers
Hello Mark,
Thank you. Please add this to your style.css file inside your current theme folder or through the https://wordpress.org/plugins/simple-custom-css/ plugin for example:
.pagination .page-numbers,
.woocommerce-pagination .page-numbers {
display: inline-block;
min-width: 20px;
}
In some cases you’ll need to add !important
.pagination .page-numbers,
.woocommerce-pagination .page-numbers {
display: inline-block !important;
min-width: 20px !important;
}
Please login or Register to submit your answer