Left aligned mobile product descripion text

Solved

Left aligned mobile product descripion text

brtbbnk
Shopify Partner
3 0 1

Hi, 

 

On mobile i would like to have the product description aligned to the left (just like desktop). The text comes in via a dynamic source. 

 

How can i do this?  

The Theme im using is 'Next'. The url is https://theflowerfield.nl/

Scherm­afbeelding 2025-02-14 om 14.58.39.png

Can you help me?

Accepted Solution (1)
Made4uo-Ribe
Shopify Partner
10043 2388 3016

This is an accepted solution.

try to paste in the screen.css file.

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 5 (5)

topnewyork
Astronaut
1299 160 217

Hello @brtbbnk 
I tried with code, but on mobile, the text is not displaying properly the way you want.

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month

Made4uo-Ribe
Shopify Partner
10043 2388 3016

Hi @brtbbnk 

Try this one. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

@media only screen and (max-width: 760px) {
.swiper-slide.swiper-slide-active {
    text-align: left !important;
}
}

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1739547249326.png

     

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
brtbbnk
Shopify Partner
3 0 1

Hi, thanks for your reply!

 

I saw a comment like this before. I can't find any of the "base.css, style.css or theme.css" files. Not in the assets map, but also not in any 'edit code' map. 

Made4uo-Ribe
Shopify Partner
10043 2388 3016

This is an accepted solution.

try to paste in the screen.css file.

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
brtbbnk
Shopify Partner
3 0 1

Perfect, that works. Thanks!!