Home Forums WoodMart support forum Line break issue when using a space as a thousand separator

Line break issue when using a space as a thousand separator

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #340971

    chefnicky
    Participant

    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.
    #341069

    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

    #341166

    chefnicky
    Participant

    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

    #341305

    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

Viewing 4 posts - 1 through 4 (of 4 total)