Changing the Size of featured category on Mobile

Topic summary

A user seeks to enlarge featured category images and reduce text size on mobile for their custom Shopify theme. The current mobile display shows small product cards that need resizing.

Initial Solution Attempt:

  • First responder provided CSS targeting .product-grid elements with media queries for screens under 768px
  • Code aimed to make cards full-width and adjust font sizes
  • User reported this solution did not work

Alternative Solution:

  • Second responder suggested different CSS approach targeting .number-counter-icon and .support-block-card__image classes
  • Provided specific dimensions (max-width: 128px, height: 115px for images)
  • Included a screenshot showing the expected result
  • Both solutions require editing the base.css file in the theme code editor

Status: The discussion remains open as the original poster has not confirmed whether the second solution resolved the issue.

Summarized with AI on November 1. AI used: claude-sonnet-4-5-20250929.

Hey,

I would like to size up the featured category because they are way to small on mobile.

Im using a custome Theme.

The picture should be bigger and the text smaller.

Below you can find a picture how it currently looks

Website: https://velocc.shop/collections/all

Hello @LianYing

1 Go to Online Store > Themes > Edit Code.
2 Open base.css (or theme.css in some versions).
3 Scroll to the bottom and paste the CSS above.
4 Save and refresh your store.

@media screen and (max-width: 768px) {
    .product-grid .card {
        width: 100% !important;
    }

    .product-grid .card__media img {
        width: 100% !important;
        height: auto !important;
    }

    .product-grid .card__content {
        font-size: 12px !important;
    }

    .product-grid .card__title {
        font-size: 14px !important;
    }
}

Thankyou

Hey unfortunately it doesnt change anything

Hi LianYing

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

@media (max-width: 768px) {
.number-counter-icon {
    width: unset !important;
}

img.support-block-card__image {
    max-width: 128px !important;
    height: 115px !important;
}
}

Result:

Best,
Liz