- I want to change the text color in the multicolumn to a brighter white.
- Also, I want to change the size of this image to a square, but only on the desktop version.
Hi @GeorgeRizos ,
Thank you for reaching out to the Shopify forums!
Let me quickly fix that issue for you.
Please add the below CSS in your base.css file.
.multicolumn-card .multicolumn-card__info {
color: #fff;
}
@media screen and (min-width: 1200px)
.image-with-text__media--small img {
height: 400px !important;
object-fit: cover;
}
}
If its working then, please do not forget to accept this solution ![]()
Thanks & Regards,
Prezen Tech
thanks, the multicolumn text changed, but the image is still the same size
Hi @GeorgeRizos
Can you please try below changes?
@media screen and (min-width: 1300px) {
.image-with-text .image-with-text__grid .image-with-text__media img {
height: 400px !important;
object-fit: cover;
display: block;
}
}
Let me know if you still face any issues.
Hello There,
.multicolumn-card.content-container p {
color: #fff;
}
.image-with-text__media.image-with-text__media--small.gradient img {
aspect-ratio: 1/1;
object-fit: contain;
}
Screenshot :- https://prnt.sc/3HKO-CNTFdtx , https://prnt.sc/C1mwKPVGsUzS
stil doens’t work sadly