Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
I'd like to widen the length of my product collapsible rows so that they are the same length of the page, aligning them with the images on the left if that makes sense?
I'm using the Dawn Theme and they look like this at the moment. Thank you!
Solved! Go to the solution
This is an accepted solution.
@schikinoils Please follow below steps to increase the length of collapsible rows. Let me know whether it is helpful for you.
.collapsible-content .collapsible-content-wrapper-narrow {
max-width: var(--page-width);
padding: 0 5rem;
}
Hi @schikinoils
Check this one.
From you Admin page, go to Online Store > Themes
Select the theme you want to edit
Under the Asset folder, open the main.css(base.css, style.css or theme.css)
Then place the code below at the very bottom of the file.
.collapsible-content-wrapper-narrow {
max-width: var(--page-width);
padding: 0 5rem;
}
And Save.
Result:
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
Hi thanks for this. I tried to add that code at the very bottom of the base.css but it didn't change anything unfortunately.
This is an accepted solution.
@schikinoils Please follow below steps to increase the length of collapsible rows. Let me know whether it is helpful for you.
.collapsible-content .collapsible-content-wrapper-narrow {
max-width: var(--page-width);
padding: 0 5rem;
}
That worked, many thanks!
sorry mistake