Problems with Multicolumn Text Spillover on Mobile

Solved

Problems with Multicolumn Text Spillover on Mobile

HighTide_Ceylon
Excursionist
13 0 5

The body of text on my Shopify website in the multi-column section of my mobile website shows the text broken into two layers in a disorderly manner. Is there anyway I can adjust the size to ensure the text is broken into two layers in an organized manner. Eg: The two words 'Expertly Roasted' needs to be broken into two levels so that the words are stacked over each other. 'Expertly' on top and 'Roasted' at the bottom.

www.hightideceylon.com

Accepted Solution (1)

MR115_ShopiDevs
Shopify Partner
23 4 3

This is an accepted solution.

1. Log in to your Shopify Admin Panel
2. Go to: Online Store > Themes
3. Find your current theme (e.g., Dawn theme).
4. Click "Actions" and select "Edit Code"
5. In the left-hand sidebar, locate the "Assets" folder.
6. CSS files (e.g., base.css, theme.css)
7. Add the provided code at the end of the file.

@media only screen and (max-width: 414px) {
  .background-none .multicolumn-list:not(.slider) .center .multicolumn-card__info {
      padding-left: 1rem;
  }
  .multicolumn-list h3, .multicolumn-list p {
      word-break: break-word;
      font-size: 20px;
  }
}


After applying this CSS file, the appearance has been updated as follows.

multicolumn-output-2.png

If this helped, don't forget to Like it and Mark it as a Solution!

EasyDisplay: Product Showcase - Easily display collections, related products, discounts, recently viewed items, and best sellers
Essential Grid Gallery - Create photo galleries, video galleries, portfolio galleries, product gallery, collection gallery and more.
Slider Revolution - Create sliders, theme sections, banners, videos, pages, advanced animation, and social feeds.

View solution in original post

Replies 5 (5)

MR115_ShopiDevs
Shopify Partner
23 4 3

This is an accepted solution.

1. Log in to your Shopify Admin Panel
2. Go to: Online Store > Themes
3. Find your current theme (e.g., Dawn theme).
4. Click "Actions" and select "Edit Code"
5. In the left-hand sidebar, locate the "Assets" folder.
6. CSS files (e.g., base.css, theme.css)
7. Add the provided code at the end of the file.

@media only screen and (max-width: 414px) {
  .background-none .multicolumn-list:not(.slider) .center .multicolumn-card__info {
      padding-left: 1rem;
  }
  .multicolumn-list h3, .multicolumn-list p {
      word-break: break-word;
      font-size: 20px;
  }
}


After applying this CSS file, the appearance has been updated as follows.

multicolumn-output-2.png

If this helped, don't forget to Like it and Mark it as a Solution!

EasyDisplay: Product Showcase - Easily display collections, related products, discounts, recently viewed items, and best sellers
Essential Grid Gallery - Create photo galleries, video galleries, portfolio galleries, product gallery, collection gallery and more.
Slider Revolution - Create sliders, theme sections, banners, videos, pages, advanced animation, and social feeds.

usmanimar
Tourist
7 1 2

reduce the size of the text and it'll fit.

Usman Imar
HighTide_Ceylon
Excursionist
13 0 5

Thanks bro. I had not thought of that.

GTLOfficial
Shopify Partner
880 182 193

Hello @HighTide_Ceylon 
Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.

h3, .h3 {
font-size: calc(var(--font-heading-scale) * 1rem);
}

result
19.png

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

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh

WebDeskSolution
Shopify Partner
240 53 63

Hello @HighTide_Ceylon 

 

Please follow the steps below after logging into the Shopify admin:

 

  • Go to your Shopify Admin panel.
  • Click on Online Store > Themes.

 

 

  • Find the live theme and then click Actions > Edit code.
  • Search base.css
  • Insert the provided CSS code at the end of the file and save the changes.

 

@media only screen and (max-width: 479px)
{
    .background-none .multicolumn-list:not(.slider) .center .multicolumn-card__info
    {
        padding-left: 1.4rem;
        padding-right: 1.4rem;
    }
    .multicolumn-list h3
    {
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        font-size: 16px;
    }
}

 

Please hit Like and Mark it as a Solution if you find our reply helpful.

Thank You,


WebDesk Solution Support Team
Get a Free Quote | Email | Shopify Partner | Shopify Development Agency | Call: 877.536.3789


Canada: 150 King St W. STE 200, Toronto, ON M5H 1J9

 | USA: 98 Cutter Mill Rd. STE 466, Great Neck, NY 11021