Shopify themes, liquid, logos, and UX
Hey there.
Im trying to have a 15 bottom and top padding for the description when the tab is open but it messes with the whole layout. And secondly, do you know of a way to turn of the stick header just on product pages?
Like such:
Thank you for any help!
Store: click me
Password: siesoh1
Solved! Go to the solution
This is an accepted solution.
first question
1: Online store > themes > Actions > Edit code > Assets > theme.css
2: paste code at last
.collapsible-trigger-btn--borders+.collapsible-content .collapsible-content__inner {
padding: 15px 20px;
}
second question
1: Online store > themes > Actions > Edit code > Layout > theme.liquid
2: paste code before </head>
{% if template == 'product' %}
<style>
.site-header {
position: static!important;
}
</style>
{% endif %}
This is an accepted solution.
first question
1: Online store > themes > Actions > Edit code > Assets > theme.css
2: paste code at last
.collapsible-trigger-btn--borders+.collapsible-content .collapsible-content__inner {
padding: 15px 20px;
}
second question
1: Online store > themes > Actions > Edit code > Layout > theme.liquid
2: paste code before </head>
{% if template == 'product' %}
<style>
.site-header {
position: static!important;
}
</style>
{% endif %}
Thank you very much!
June brought summer energy to our community. Members jumped in with solutions, clicked ...
By JasonH Jun 5, 2025Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025