I'm removing the page numbers, and adding a class of .pager like this:
<%= will_paginate @posts,
renderer: BootstrapPagination::Rails,
page_links: false, class: :pager %>
However, because it's automatically adding the .pagination class as well, I'm getting some funkiness.
I don't have a live example, but here's how it looks with first .pager .pagination and second with just .pager

Thanks in advance :)