Search code examples
csswordpresswoocommerceright-to-left

Woocommerce phone number input filed from right to left


Can I change input text for phone to be from right to left

enter image description here

I tried to customize CSS with that rules:

form.checkout #billing_phone_field label,
 form.checkout #shipping_phone_field label {
margin-right: 260px;
}

This css code changes the label from right to left not the number


Solution

  • You should use the CSS direction property to set the text direction to "right-to-left":

    form.checkout #billing_phone_field label,
    form.checkout #shipping_phone_field label {
         direction: rtl;
    }