How to small the brand slider image in mobile view using ella theme.

Hi ,

I recently working on brand slider using ella theme the issue is solved in Laptop view but not check in mobile view now check in mobile view the images are large. Is their another code is required for it?
Thank you

1 Like

Hey @Asad712

Share your Store URL and Password if enabled.

Best Regards,

Moeed

PREVIEW LINK
https://a68qc6kuhm4l6fpa-57675972670.shopifypreview.com

Hey @Asad712

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

it not work and i delete the previous code

https://a68qc6kuhm4l6fpa-57675972670.shopifypreview.com

Previous code

.brand-slider .halo-row.brand-layout–infinite .halo-item {
width: 160px !important;
}

in this code mobile view has issue only

Any solution regarding this issue


1 Like
  • Here is the solution for you @Asad712
  • Please follow these steps:
  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.liquid file
  3. In theme.liquid, paste the below code before and press ‘Save’ to save it

  • Here is the result you will achieve:

  • Please press ‘Like’ and mark it as ‘Solution’ if you find it helpful. Thank you.
1 Like

Thank you for it works
This code actually worked :+1:

@media (max-width: 551px) { main .brand-slider .brand-layout--infinite.sm-column-1 .halo-item { width: 130px !important; } }