Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello! The standard format for featured products on Dawn Theme home page is for the title (and all content) to be vertically placed at the top in the content next to the featured product photo.
I'd love for the title (and all text content on featured product) to be vertically CENTERED next to the product photo, not up at the top of the content box. Anyone have any tips or ideas on how to achieve this? Th
Solved! Go to the solution
This is an accepted solution.
Hello @Alex4242
Follow the steps
Go to Online Store > Theme > Edit Code > base.css file
Add the below code at the end of the file
@media screen and (min-width: 750px) {
.featured-product {
align-items: center;
}
}
Thanks
This is an accepted solution.
Hello @Alex4242
Follow the steps
Go to Online Store > Theme > Edit Code > base.css file
Add the below code at the end of the file
@media screen and (min-width: 750px) {
.featured-product {
align-items: center;
}
}
Thanks
Thank you so much. WORKS PERFECTLY!! I really appreciate it.