Woocommerce Price Text Alignment

I’m trying to align the price of my woocommerce products text-align left. Currently it shows aligned right. This is the code I imputed into the global css:

.woocommerce.single-product .price {
text-align: left;
}

But it’s not working. Any suggestions?

https://www.printcue.com/product/arizona-business-card/

Hi,

You need to add a close bracket before adding your code.

eg.

.x-navbar .mobile .x-nav li>a {
    color: #000;
    background: #fff;
}   /* <-- add this */

.woocommerce.single-product .price {
        text-align: left;
}
.woocommerce div.product .summary .variations select {
        width: 50px;
 }

Thanks

This is why a second pair of eyes is invaluable! I was going insane fixing the wrong thing.Thank you so much! It’s fixed now.

You’re more than welcome, glad we could help.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.