How can I change product description card on Warehouse theme

Topic summary

Goal: Adjust the Warehouse theme’s product description card to match the product photos card size so the Add to Cart button isn’t hidden while scrolling.

Context: A product page URL was provided. A screenshot illustrated the layout issue (image not essential to the fix).

Solution provided: Add a CSS rule in theme.css targeting the description block on larger screens using a media query (min-width: 1001px). Selector and rule: .product-block-list__item.product-block-list__item–description { width: 59%; }. Steps: Online Store → Theme → Edit code → Assets → theme.css → paste at the bottom.

Rationale: The media query limits the change to desktop-sized viewports, leaving mobile unaffected. Increasing the description card’s width aligns it visually with the photos card and keeps the Add to Cart button in view.

Outcome: The merchant confirmed the fix worked. Status: Resolved; no further questions or disagreements. Code snippet is central to the solution.

Summarized with AI on February 14. AI used: gpt-5.

I need to change the product description card size, but i cant find where i change this.

It need to be the same size as the product photos card, because the way that product description is right now, when the customer scrolls down, the Add to cart buton is being hidden.

1 Like

@Setor_Esportes

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

Hello @KetanKumar , the URL is https://www.setoresportes.com.br/collections/mais-vendidas/products/camisa-corinthians-nike-ii-22-23

1 Like

@Setor_Esportes

yes, please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
@media screen and (min-width: 1001px) {
.product-block-list__item.product-block-list__item--description {
    width: 59%;
}
}

Thanks @KetanKumar . It worked. I’m grateful for your help.