I would like to know if anyone can help me get full width on my featured collection. Now its like this:
URL: www.doglegstore.com
Password: Hundben2022
thank you in advance,
Gustav
I would like to know if anyone can help me get full width on my featured collection. Now its like this:
URL: www.doglegstore.com
Password: Hundben2022
thank you in advance,
Gustav
Hello There,
.shopify-section--featured-collection .section-blends scroll-carousel {
padding: 0;
}
Hi ZestardTech,
Thank you very much for your quick response and solution; it improved it.
But is it possible to make it “fullscreen” so it’s no gap above, under, and between the products, if you understand what I mean?
Best,
Gustav
Hello There,
.shopify-section--featured-collection product-list.product-list {
gap: unset;
}
.shopify-section--featured-collection .section.section-blends.section-full {
padding-block-start: 0;
padding-block-end: 0;
}
Wow, thank you, it worked!
Last detail… How do I make the title and price appear only when the product is being hovered on? Now it looks a bit strange, as shown above.
Hello There,
.product-card.product-card.product-card--blends.product-card--show-secondary-media.bg-custom.text-custom:hover .product-card__info.product-card__info--center {
display: block;
}
.product-card__info.product-card__info--center {
display: none;
}
Thank you! Now it looks fire!
The only thing is that it looks weird while scrolling on mobile. Is it possible to fix that? So that you see the price under the product, as you cannot hover on a mobile?
Thank you.
Hello There,
Remove this css.
.product-card.product-card.product-card--blends.product-card--show-secondary-media.bg-custom.text-custom:hover .product-card__info.product-card__info--center {
display: block;
}
.product-card__info.product-card__info--center {
display: none;
}
And add this css.
@media (min-width: 768px) {
.product-card.product-card.product-card--blends.product-card--show-secondary-media.bg-custom.text-custom:hover .product-card__info.product-card__info--center {
display: block;
}
.product-card__info.product-card__info--center {
display: none;
}
}