Padding in description not applying properly

Solved

Padding in description not applying properly

itsolidude12
Pathfinder
128 4 41

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: s1.png

 

Thank you for any help!

 

Store: click me

Password: siesoh1

Accepted Solution (1)

Kani
Shopify Partner
468 125 233

This is an accepted solution.

Hi @itsolidude12 

 

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;
}

 

Kani_0-1660383576497.png

 

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 %}

Kani_1-1660383590917.png

 

 

 

Hey!! ʕ ᵔᴥᵔ ʔ
Please click 'Like' and ' Accept as Solution' to encourage me to continue sharing my expertise. ♡
If you need any technical assistance, feel free to send me a DM. You no longer have to search for answers without getting a response. 🙂

View solution in original post

Replies 2 (2)

Kani
Shopify Partner
468 125 233

This is an accepted solution.

Hi @itsolidude12 

 

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;
}

 

Kani_0-1660383576497.png

 

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 %}

Kani_1-1660383590917.png

 

 

 

Hey!! ʕ ᵔᴥᵔ ʔ
Please click 'Like' and ' Accept as Solution' to encourage me to continue sharing my expertise. ♡
If you need any technical assistance, feel free to send me a DM. You no longer have to search for answers without getting a response. 🙂
itsolidude12
Pathfinder
128 4 41

Thank you very much!