This topic has 10 replies, 2 voices, and was last updated 5 years ago ago by Olga Barlow
Hello,
In my checkout section shipping method don’t have a correct alignment. I would like it to show the same as payment method. Please see screenshot: https://www.ia-incosmetics.com/wp-content/uploads/2019/10/checkout-mal-alineado.jpg
Thanks
Hello,
Shipping methods use the table HTML structure http://prntscr.com/ppllgk and you can’t push them below the Envio title without editing of the PHP files.
If you want just to align then to left http://prntscr.com/ppllzp add the following code to Theme Options > Theme Custom CSS
.cart-order-details .shop_table td .woocommerce-shipping-methods {
text-align: left;
}
#shipping_method li {
flex-direction: row;
}
#shipping_method input[type="radio"] + label {
padding-left: 10px;
}
Regards
OK, I already set the code in custom css. There is any way to also make the “Envío” column narrower? So each text would be in a single row.
Thanks
Hello,
You could try to play with column width using custom CSS but don’t forget that this is a table and if you change the column width it will be applied not just for the Envío but also for the product title cell http://prntscr.com/ppm5zv
Regards
Can’t do that then.
And it is possible to make wider shipping and payment method table gaining space to shipping details table? I mean like have screen for each table. Because now it doesn’t look good.
Hello,
Unfortunately, there is no way to change it with the existing structure of the table. I have passed your issue to our developers and they will take a look if it’s possible to improve the structure and its styles in the next updates. So, follow theme updates https://xstore.8theme.com/update-history/
Regards
Thank you very much! I made a lash-up with this code and now it looks much better.
.col-md-7 {
width: 45%;
}
.col-md-5 {
width: 55%;
}
.cart-order-details .shop_table th {
padding-right: 10px;
height: 72.6632px;
width: 230px;
}
Hello,
Oh, no don’t use such global classes as .col-md-7 and .col-md-5 These classes are default bootstrap classes and used through all the site for many different elements!
Use the deep structure to apply new styles for that table only, like
.checkout.woocommerce-checkout .col-md-5
and.checkout.woocommerce-checkout .col-md-7
oh! ok, I’ve already changed it. I’m quite novice on this… 😐
Thank you!!
Hello,
I see 🙂 It’s ok.
Regards
You must be logged in to reply to this topic.Log in/Sign up