Make collapsible rows same size

Solved

Make collapsible rows same size

TrendBlend
Trailblazer
342 0 35

Hello,

 

I want to make my collapsible rows the same size becaude the middle one looks a bit smaller. Also I would like the text of the middle collapsible row to be more in the middle of the row. And lastly, I would like the icons and text to be bigger.

IMG_3337.jpeg

I hope someone is willing to help me with this! Thanks in advance!

Accepted Solution (1)

Tech_Coding
Shopify Partner
514 132 131

This is an accepted solution.

Hello @TrendBlend 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
   #Details-collapsible_tab_jgHthG-template--23184790061395__main {
      margin-top: 0 !important;
    }

     #shopify-section-template--23184790061395__main .summary__title {
          display: flex;
          align-items: center;
     }
    .accordion__title {
        font-size: 20px !important;
    }
    .accordion .icon-accordion {
        height: calc(var(--font-heading-scale)* 3rem) !important;
        width: calc(var(--font-heading-scale)* 3rem) !important;
    }
</style>

Tech_Coding_0-1729331800680.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.

View solution in original post

Replies 3 (3)

TrendBlend
Trailblazer
342 0 35

Rahul_dhiman
Shopify Partner
806 155 169

Hello @TrendBlend 
Go to online store ----> themes ----> actions ----> edit code ---->base.css ----> line number 3849
search this code

#Details-collapsible_tab_jgHthG-template--23184790061395__main {
margin-top: -15px !important;
}


and replace with this code

#Details-collapsible_tab_jgHthG-template--23184790061395__main {
margin-top: 0px !important;
}

 result
14.png

If this was helpful, hit the like button and accept the solution.
Thanks

Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront

Contact here


BEST CUSTOMER ACCOUNTS APP WITH CUSTOM WISHLIST OPTION 
TRY OUR APP :

PWC: Customer Accounts & Pages

Tech_Coding
Shopify Partner
514 132 131

This is an accepted solution.

Hello @TrendBlend 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
   #Details-collapsible_tab_jgHthG-template--23184790061395__main {
      margin-top: 0 !important;
    }

     #shopify-section-template--23184790061395__main .summary__title {
          display: flex;
          align-items: center;
     }
    .accordion__title {
        font-size: 20px !important;
    }
    .accordion .icon-accordion {
        height: calc(var(--font-heading-scale)* 3rem) !important;
        width: calc(var(--font-heading-scale)* 3rem) !important;
    }
</style>

Tech_Coding_0-1729331800680.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.