Hi,
Is it possible to centre the product title and price just on mobile view?
Including the product reviews.
All of this:
Thanks,
Harvinder
Hey ballindigital,
Thank you for the inquiry.
You can add this css code:
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
#top div.product .product_title {
clear: none;
text-align: center;
}
#top div.product .price {
width: 100%;
display: flex;
justify-content: center;
}
}
Result:
Best regards,
Ismael
Hi,
This looks great – I just need the reviews part to be centred too please..