Hi there, does anybody know how to move the “you may also like” as well as the recommended tracks below the title, price, description, add to cart, etc? This is only an issue I have for the mobile view. The desktop view does not have this issue. The desktop view is on the bottom. Thanks.
1 Like
hi @Ben_Sheps
You can adjust the placement of the ‘You May Also Like’ and recommended tracks on mobile by modifying your theme’s Liquid file and CSS.
Use CSS to Reorder on Mobile
@media screen and (max-width: 768px) {
.product-recommendations {
order: 5; /* Move it below other elements */
}
.product-form, .product-meta, .product-title {
order: 1;
}
}

