Centering the Patreon Button

Edit: if you found this post via search, and are looking to center the button on your website, please visit this post for a more general solution: How to centre the Patreon button (WordPress)?


I’m not familiar with the widget so I’m not sure if there’s an official way to modify the styling, but you could achieve a centered Patreon button with the following rule in your stylesheet:

.cb_p6_patreon_site_widget img {
    margin: auto;
}

If you don’t have a stylesheet to add that to, you could add it direct to the HTML above your widget, e.g:

<style type="text/css">
  .cb_p6_patreon_site_widget img {
    margin: auto;
  }
</style>