- This topic has 9 replies, 3 voices, and was last updated 6 years, 9 months ago by .
Viewing 10 posts - 1 through 10 (of 10 total)
Viewing 10 posts - 1 through 10 (of 10 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP Photo Seller › Photo Seller Cart – Remove alternating row colours
Is it possible to have the row colours all the same and not alternating?
Also, when a coupon discount is applied, how do I change the background colour of the box that highlights that the coupon has been applied?
Thank you
Please share a link to your photo gallery page so we can inspect it and help with the CSS tweak.
You can also learn how to do it yourself using the following tutorial:
Here is the link to the gallery page,
Any help would be appreciated,
Many thanks,
[http://www.manxphotosonline.com/2018/01/27/2018-ard-whallan-fell-run-27th-october-2018/]
I’ve successfully managed to change the background colour of the box which highlights that the discount coupon has been applied but still struggling to change the alternating row colours in the cart if two or more items are added,
Thanks
I’ve added the following:
#viewCartTable .pure-table-odd td{
background: transparent;
}
In the Custom CSS plugin but it hasn’t changed anything
Use the following to remove the background from the odd rows in the shopping cart.
#viewCartTable .pure-table-odd td {
background: none !important;
}
I have tried that but it doesn’t work unfortunately.
There is no reason for that CSS to not work. Did you verify that the CSS you injected is actually in that page? I tried to check it by viewing the source but looks like you have right click disabled on your page.
The following code will work:
.wps_variation_selection_section #variationTable .wps_tr_even{
background: none;
}
BUT, you will need to delete your last attempt and fix up the CSS errors you created in the custom css plugin because you pasted something incorrectly and you have missing brackets and/or double brackets etc.
Thank you Peter, all sorted.
I found the double bracket I had put in the Custom CSS
Thanks again