Re: Left align these elements on mobile view: Impulse Theme

Solved

Left align these elements on mobile view: Impulse Theme

kingbeanz
Explorer
51 5 13

Hi,

I'm trying to left-align the following elements on impulse theme, have tried many solutions but can't get it to work:

Screen Shot 2024-07-08 at 10.51.37 pm.png

Here is an example of what I'm after from another website:

IMG_6780.jpg

Here is my website:
https://emery-london.com/products/lisa-dress

Any help is greatly appreciated !!

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10202 2422 3067

This is an accepted solution.

Hi @kingbeanz 

Check this one. 

  1. From you Admin page, go to Online Store > Themes
  2. Select the theme you want to edit
  3. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  4. Then place the code below at the very bottom of the file.

 

@media only screen and (max-width: 768px) {
    .grid__item.medium-up--one-half .product-single__meta {
        text-align: left !important;
    }
   .grid__item.medium-up--one-half .sales-point .icon-and-text {
        justify-content: left;
    }
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1720477249846.png
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 2 (2)

Made4uo-Ribe
Shopify Partner
10202 2422 3067

This is an accepted solution.

Hi @kingbeanz 

Check this one. 

  1. From you Admin page, go to Online Store > Themes
  2. Select the theme you want to edit
  3. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  4. Then place the code below at the very bottom of the file.

 

@media only screen and (max-width: 768px) {
    .grid__item.medium-up--one-half .product-single__meta {
        text-align: left !important;
    }
   .grid__item.medium-up--one-half .sales-point .icon-and-text {
        justify-content: left;
    }
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1720477249846.png
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.
kingbeanz
Explorer
51 5 13

THANK YOU SO MUCH.

I really appreciate it.