Line break issue when using a space as a thousand separator
-
Hello
We want use space as a thousand separator in WooCommerce however when we do it the following problem occurs, i.e. when a user go to the cart there is a line break if we are using space as a thousand separator. (see attached pictures)
What are the ways to solve the issue? May be its possible to reduce a little bit a column where total sum of order is shown or something else?
Attachments:
You must be
logged in to view attached files.
Hello,
WoodMart theme does not influence or have the option to change that, unfortunately.
All the available options are provided in Woocommerce > Settings.
If you have any questions please feel free to contact us.
Best Regards
Thank you for reply
I would be very greatful if you tell me the name of files and the range of line with the code which are resposible for the cart page so can solve the isssue manually or may be you can provide me a code responsible for font size in the cart I suppose that if decrease the font their a little bit the problem will be solved
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
body.woocommerce-cart .td.product-price .amount {
color: #777;
font-weight: 400;
font-size: 14px;
}
body.woocommerce-checkout .amount {
color: #777;
font-weight: 400;
font-size: 14px;
}
This code is for car and checkout page, you can change font-size as per your needs.
Best Regards