Button Size (Shop Page)

Hi,
Is there a way to control the Button width & height on the Shop Page?
http://rleone.com/shop/

Thanks.

Hello Robert,

To control the button size, please remove this code:

.woocommerce li.product .entry-header .button {
    opacity: 10;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    font-size: 15px;
}

And replace it with this code instead:

.woocommerce li.product .entry-header .button {
    opacity: 1;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    font-size: 15px;
    max-width: 150px;
    margin: 0 auto;
    padding: 10px;
}

Feel free to adjust the width, the font size and the padding if you need a bigger/smaller button.

Perfect. Thanks again!

You’re welcome!
We’re glad we were able to help you out.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.