Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey, thanks for contacting us!

    For this, I would use some custom CSS to change the font size of that text.

    Try adding this to Customize> Additional CSS:

    @media (max-width: 400px) {
    .woocommerce ul#shipping_method li {
        font-size: 85%;
        }
    }

    Let me know if that works for you!

    Best regards,
    Kevin

    Thread Starter freddyee

    (@freddyee)

    Thanks !

    Is it possible to have all the options align to the left and the prices to the right ?

    hannah

    (@hannahritner)

    Hi @freddyee,
    Try adding this to your custom css:

    @media (max-width: 768px) {
    .woocommerce ul#shipping_method {
        margin-top: 30px;
    }
    .woocommerce ul#shipping_method li label {
        width: 100%;
        text-align: left;
    }
    .woocommerce ul#shipping_method .amount {
        float: right;
    }
    }

    Hope it helps!

    Best,
    Hannah

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘messy shipping types in cart page’ is closed to new replies.