Hello,
I would like the price to be closer to the product name.
Can somebody help?
Found it!
Try this one.
.contains-card--product .price {
margin-top: 0;
line-height: 1;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Hello,
@media (min-width: 1024px) {
.featured-slide-content-template--23998962303301__ss_featured_collection_11_dPJ4H4 {
padding: 10px 10px;
display: flex !important;
gap: 3rem !important;
}
}
@media (min-width: 1024px) {
.featured-price-template--23998962303301__ss_featured_collection_11_dPJ4H4 * {
font-size: 13px;
padding: 0px 8px !important;
}
}
Thanks!
Hello @JoaquinExcitare
.card--standard>.card__content .card__information {
display: flex;
align-items: baseline;
}
.card-information {
width: 50%;
text-align: end;
}
.card__heading {
width: 50%;
}
.card--standard>.card__content .card__information {
padding: 0 10px 0 10px;
}
Hello @JoaquinExcitare
.card-information .price {
font-size: 1.3rem;
}
The font size only ajusts on desktop, I need the same thing to show on mobile
Hello @JoaquinExcitare
I have checked, and it is also working fine on mobile devices.
Hello @JoaquinExcitare
@media (max-width: 768px){
.card-information .price {
font-size: 1.3rem!important;
}
}