This topic has 2 replies, 2 voices, and was last updated 4 years, 3 months ago ago by Rose Tyler
Hi,
in the Shop under the product image I have:
Product Name / Brand / Price / Add to cart
can I move the Brand first, like:
Brand / Product name / Price / Add to cart
Hi,
Add the next code in Theme Options > Theme custom CSS:
.content-product .product-details {
display: flex;
flex-direction: column;
}
.content-product .product-details .products-page-brands {
order: 1;
}
.content-product .product-details .product-title {
order: 2;
}
.content-product .product-details .price {
order: 3;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up