Hi @wholisticyou,
To align the technical information section below the product description to the left instead of the default right alignment, you can use custom CSS. Here’s how you can achieve this:
- Go to your WordPress dashboard.
- Navigate to “Appearance” > “Customize.”
- In the Customizer, go to “Additional CSS.”
Add the following CSS code to left-align the technical information section:
.single-product .woocommerce-product-details__short-description {
text-align: left;
}
This code targets the specific class that wraps the technical information section on the product details page and sets its text alignment to left.
After adding this CSS, the technical information section should be aligned to the left on your product details page. If you’re using a custom theme or a page builder, the class names may vary, so you might need to inspect the HTML and adjust the CSS selectors accordingly.