Change the size of buttons

Hey there,

I want to change the buttons sizes for the buttons “next”, “previous” at the blog pages, so that the lettering isn`t cut off. How does that work?

Hello,

Inside your customizers custom css box, you can add the css below which will make the button bigger.

.post-navigation .nav-previous a, .post-navigation .nav-next a {
width: 180px !important;
}

Thank you