-
AuthorPosts
-
September 21, 2015 at 11:13 pm #398267
How can I change text and button colors for my WooCommerce shop and cart pages?
X-Theme says it has full WooCommerce Intergration but I cannot find a way to make these changes. WooCommerce settings doesnt have the options and making changes via customizer dose not change the appearance either.
I have installed and tried the “WooCommerce – Colors” plugin but it would not override the X-theme settings.
Any help would be much appreciated. ThanksSeptember 22, 2015 at 12:33 am #398322Hi there,
Thanks for writing in! Would you please provide your URL first? Also point us the exact URL of pages your are trying to change. Clarify a bit which button/text you need to modify.
Thanks
September 22, 2015 at 1:15 am #398350This reply has been marked as private.September 22, 2015 at 1:37 am #398363Hi there,
Thanks for updating and clarifying the problems.
You can add this under Custom > CSS in the Customizer.
/* Text color and background color for Options */ .single-product select, .single-product textarea, .single-product input[type="text"] { color: #fff; background: #dd3333; } /* Text color of inactive nav */ .single-product .x-nav-tabs > li > a { color: #ccc; } /* Text color of active nav */ .single-product .x-nav-tabs > .active > a, .single-product .x-nav-tabs > .active > a:hover { color: #fff; }
Please adjust the colors with your own and add more CSS if needed.
Hope this helps.
Cheers!
September 22, 2015 at 9:30 pm #399358This reply has been marked as private.September 23, 2015 at 12:57 am #399501Hello There,
You’re welcome.
Thank you also for the screenshots. Please add the following CSS via Appearance > Customize > Custom > CSS:.woocommerce .quantity input[type="number"], .woocommerce-page .quantity input[type="number"] { color: #ffffff ;/*Quantity font color. Change your preferred color*/ } .update .button,.update [type="submit"] { box-shadow: none;/*Remove gray box around cart button*/ } table th, table td { border-top: 1px solid #1f1f1f; /*Change #1f1f1f to your preferred border lines*/ }
Hope this helps.
September 23, 2015 at 7:21 pm #400534This reply has been marked as private.September 23, 2015 at 10:29 pm #400671Hello There,
Yes that is ok. Sorry for the confusion for the last one. Please remove the following:
.update .button,.update [type="submit"] { box-shadow: none;/*Remove gray box around cart button*/ }
Then add the following instead:
.update.action-group { background-color: transparent !important; border: none !important; }
Hope this helps.
-
AuthorPosts