How can I fix the alignment issue on my customer account order page?

@LitCommerce there was one more thing actually i was wondering whther you could help me with please

its the writing on the customer page order, it doesnt line up with the rest of it, is it to do with the padding? i drew on these screen shots to show you what i mean, it’s not in line with the other writing on the page,

cheers!

Hi @merxyz ,

Go to Assets > theme.scss.liquid and paste this at the bottom of the file:

.template-customers-account .responsive-table th:first-child, .template-customers-account .responsive-table td:first-child {
    padding-left: 0 !important;
    text-align: left !important;
}
.order-table th:first-child, .order-table td:first-child {
    padding-left: 0 !important;
    text-align: left !important;
}

Hope it helps!

1 Like

Hi.

This is PageFly - Advanced Page Builder.

You can go to Online store => themes => actions => edit code and add this code on file base.css

.template-customers-account .responsive-table th:first-child, .template-customers-account .responsive-table td:first-child {

    padding-left: 0 !important;

   }

.order-table th:first-child, .order-table td:first-child {

    padding-left: 0 !important;

   }

Hope this helps.

Best Regards;

Pagefly

1 Like

@LitCommerce thanks so much for all your help! works great :slightly_smiling_face:

1 Like