Hello, i am wanting to customise my product page but the product details are currently too narrow. How can i expand the text area of the product to be wider? What code do i need to add?
Topic summary
A user wants to expand the product details text area on their Horizon theme product page, which is currently too narrow.
Proposed Solution:
- One responder suggested modifying the theme’s product page CSS file
- Provided sample CSS code targeting
.product__descriptionand.product__info-wrapperclasses - The code sets
max-widthandwidthto 100% with!importantflags
Current Status:
- Multiple community members have requested the store URL and password to provide a more tailored solution
- The discussion remains open, awaiting the original poster’s store details for specific guidance
2 Likes
Hi,
Hope this will work
- Opened your theme code
- Found product page code file and edit css
CSS example
/* Make product description wider */
.product__description,
.product__info-wrapper {
max-width: 100% !important;
width: 100% !important;
}
Hello @CW-1257
Welcome to the Shopify Community! Please share your store URL and password (if it’s password-protected), so I can check and provide you with the exact solution