Could I get it so the second theme card’s image only shows about half the size that it is, before it is opened? So it is only maybe 300px taller than the ones with no pictures?
Just to confirm, you’d like to slightly reduce the height of all bigger cards (not only Ratings posted) on mobile, correct?
yes, just a bit shorter
Thanks! This CSS code will do the trick:
@media (max-width: 480px) {
[class*='MediaContainer__Container']:has(img) {
padding-top: 210px !important;
}
}
Give it a try and let me know how it worked ![]()
Sorry for this oversight!
Please try to use this code instead and let me know how it worked:
@media (max-width: 480px) {
[class*="layout__Grid-sc"] [class*='MediaContainer__Container']:has(img) {
padding-top: 210px !important;
}
}



