Hello,
in cart page when we insert a coupon correctly his value is left aligned while all other numeric values are correctly right aligned because it loads
table.shop_table {
margin: 0px -1px 24px 0px;
margin-top: 0px;
margin-right: -1px;
margin-bottom: 24px;
margin-left: 0px;
text-align: left;
}
from https://example.net/wp-content/themes/enfold/config-woocommerce/woocommerce-mod.css
It doesn’t have any ID or style attached,how can I right align it?
Please see screenshot in Private Content
Thank you
Mauro
Hey profumopuntoit,
Sorry for thw late reply, Please try this code in the General Styling > Quick CSS field:
#top .cart-collaterals .cart_totals .cart-discount td {
text-align: right !important;
}
Best regards,
Mike
Excellent, thank you Mike!
Is it possible to have first [Remove] and after the discount, so that all the numeric values are properly aligned?
Mauro
Please go to https://profumo.tinytake.com/sf/MzAwMzY5MV85MDAyNjI3 to see what I mean
Thank you
Mauro
Hi,
Oh I see now, thanks.
Please add this css:
#top .cart-collaterals .woocommerce-Price-amount.amount {
float:right !important;
}
Best regards,
Mike