add to cart button color

Posted in: Newspaper
Post count: 24

Hello,
i can’t find it in the forum: does anybody know how to change color and size of the add to cart button in newspaper theme woocommerce?
many thanks,
Fabio

Post count: 23312

Hello factoryitalia,

Please try the code below and add it in Theme panel->Custom CSS area, like this -> http://screencast.com/t/MJp9Jrh5Wd7

.woocommerce-checkout .woocommerce input.button, .woocommerce-page .woocommerce a.button, .woocommerce-account div.woocommerce .button {
background-color:pink;
padding:20px;
}

The result you should see here -> http://screencast.com/t/M1WGu2rtnq

Post count: 24

I tried but not working . I need to activate something ?

Post count: 22421

Hello,
Please provide a link to your shop page so we can inspect it and see why the code does not apply.
Thank you!

Post count: 24
Post count: 22421

Hello,
Please try this code instead:
.woocommerce ul.products li.product .button{
padding:20px;
background-color:pink;
}

Thank you!

Post count: 24

Ok , it works but not the double color … if possible Have the code , thanks Otherwise the Same .

Post count: 23312

Hello factoryitalia,

If you want to change the text color from the button, you have to use the code below and add it in Theme panel->Custom CSS area.

.woocommerce .product a.button {
color:blue;
}

The result -> http://screencast.com/t/NV7USQvCs0Rf

If is not what you mean, please provide more details about what you want to achieve so I will be able to provide a more accurate response.

Thank you for the message!

Post count: 24

Thanks , I meant What steps When the mouse over the arrow changes color .

Thank you

Post count: 23312

Hello factoryitalia,

If you want to change the color of background-color on the hover effect, you have to try the code below and add it in Theme panel->Custom CSS area, like this -> http://screencast.com/t/QkUtqgbm1ci

The code is ->

.woocommerce .product a.button:hover {
color:blue;
background-color:red;
}

The result you should see here -> http://screencast.com/t/Ux8Fg1BzzdN

And if you want to change the color of the arrows, please try the code below ->

.td-icon-menu-right:hover, .td-icon-menu-left:hover {
color:red;
}

Hope this helps and let us know how it goes!

If is not what you mean, please provide more details about what exactly do you want to change.

Thank you for the message!

Post count: 30

Hi Catalin,

Can you give me the code to change the button, hover and text color on the ‘Add to Basket’ button on the individual product pages please?

Thanks
Steve

Post count: 23312

Hello pixus,

Please provide your website URL and also the specific link where the button exist so I can further inspect it closer and so I will be able to provide a more accurate response.

Thank you for your understanding!

Post count: 30

Thanks Catalin,

This is an example of the product page I want to change the buttons to orange #ff9500:

http://www.expeditionaustralia.com.au/product/the-big-lap-dvd-series/

This is the Shop page where the buttons are the correct color:

http://www.expeditionaustralia.com.au/shop/

Thanks
Steve

Post count: 23312

Hello pixus,

Please try the code below and place it in Theme panel->Custom CSS area.

The code is ->

.single-product .product .summary .cart .button {
background: none #ff9500;
}
.single-product .product .summary .cart .button:hover {
color: #5e5e5e;
}

Hope this hleps!

Thank you for the message!

Post count: 30

Thanks Catalin,

That worked.

Cheers
Steve

Viewing 15 posts - 1 through 15 (of 15 total)
You must be logged in to reply to this topic.