Join us NOW for an AMA with 2H Media: Holiday Marketing for Your Shopify Store and have your marketing questions answered by marketing experts 2H Media | Plus watch the 2H Media AMA Livestream on Twitch!

Re: Symmetry theme collapsible tab width and description width crammed together on mobile

Solved

Symmetry theme collapsible tab width and description width crammed together on mobile

Vicki_Reale
Shopify Partner
18 1 3

When I look at mobile version of my website the "Product Grouped" section and my descriptions are all crammed into a narrow column instead of stretching the whole width of the phone.  Look at this on your mobile phone:

Product page

 

How do I fix those tabs from overlapping and stretch out my description?

Accepted Solutions (2)

Spac-es
Shopify Partner
390 112 141

This is an accepted solution.

delete this code from your file called ebb-style.css (appears twice):

line 1640 and line 198.

          .product.product-grouped {
              padding: 0 100px;
          }

 Before:Captura de pantalla 2023-11-11 003700.png

 

 After:Captura de pantalla 2023-11-11 003746.png

 

Any donation is welcome! https://www.buymeacoffee.com/spacescoffee Thanks in advance!

View solution in original post

Spac-es
Shopify Partner
390 112 141

This is an accepted solution.

To prevent these elements from stacking on top of each other, you must first locate the following code (ebb-style.css):

 

1.PNG

 

 

 

 

 

 

You should add a gap of approximately 15px (adjust it as you want). The code will look something like this:

.tabs__product-page .list-tabs {
    margin: 0 0 30px;
    border-bottom: 1px solid #e6e6e6;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding-bottom: 5px;
    gap: 15px;
}

 

Before:0.PNG

 After:2.PNG

 

 

Any donation is welcome! https://www.buymeacoffee.com/spacescoffee Thanks in advance!

View solution in original post

Replies 5 (5)

Spac-es
Shopify Partner
390 112 141

This is an accepted solution.

delete this code from your file called ebb-style.css (appears twice):

line 1640 and line 198.

          .product.product-grouped {
              padding: 0 100px;
          }

 Before:Captura de pantalla 2023-11-11 003700.png

 

 After:Captura de pantalla 2023-11-11 003746.png

 

Any donation is welcome! https://www.buymeacoffee.com/spacescoffee Thanks in advance!
Vicki_Reale
Shopify Partner
18 1 3

You rock!  I got so many spam messages in my Facebook Messenger.  Thank you for being honest and helpful!

Vicki_Reale
Shopify Partner
18 1 3

@Spac-es Do you happen to have any suggestions so the Horizontal Tab above the description isn't so crammed together and only have the words are showing for: "Description,  Customer Reviews, Bodyboard Quiz, Shipping info"?

Spac-es
Shopify Partner
390 112 141

This is an accepted solution.

To prevent these elements from stacking on top of each other, you must first locate the following code (ebb-style.css):

 

1.PNG

 

 

 

 

 

 

You should add a gap of approximately 15px (adjust it as you want). The code will look something like this:

.tabs__product-page .list-tabs {
    margin: 0 0 30px;
    border-bottom: 1px solid #e6e6e6;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding-bottom: 5px;
    gap: 15px;
}

 

Before:0.PNG

 After:2.PNG

 

 

Any donation is welcome! https://www.buymeacoffee.com/spacescoffee Thanks in advance!
Vicki_Reale
Shopify Partner
18 1 3

AWESOME!!!!! THANK YOU!