improve check out button woo

Posted in: Newsmag
Post count: 226

hi guys
I would like to improve the check out button for Woocomerce.

http://pasteboard.co/19lGxZIn.png

I want to make it less wide, a little taller and increase font size, if posible change colors too.

Thanks a lot!!!!

Post count: 6535

Hi

Try this css in theme panel > custom code > custom css:

.woocommerce-page .woocommerce a.button{
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    padding: 13px;
    font-size: 15px;
}

Thanks!

  • This reply was modified 10 years by Andrei L..
Post count: 226

thanks Andrei look much better, now how can i change the color and the hover color?

Post count: 6535

Hi

Replace the above cs with this one and pte the color as you need:

.woocommerce-page .woocommerce a.button{
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    padding: 13px;
    font-size: 15px;
    background-color: red;
}
.woocommerce-page .woocommerce a.button:hover{
    background-color: green;
}

Thanks!

Post count: 226

Thanks !!!!!

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newsmag’ is closed to new topics and replies.