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

Solved

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

Asad712
Shopify Partner
26 0 11

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

Asad712_0-1727245001757.png

 

Asad ALI
Accepted Solutions (2)

BSS-TekLabs
Shopify Partner
2350 702 827

This is an accepted solution.

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

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

View solution in original post

BSS-TekLabs
Shopify Partner
2350 702 827

This is an accepted solution.

- 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 </head> and press 'Save' to save it

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

- Here is the result you will achieve:

BSSTekLabs_0-1727357808657.png

 

- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

View solution in original post

Replies 9 (9)

Moeed
Shopify Partner
5466 1479 1766

Hey @Asad712 

 

Share your Store URL and Password if enabled.

 

Best Regards,

Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


Asad712
Shopify Partner
26 0 11
Moeed
Shopify Partner
5466 1479 1766

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 </body> tag

<style>
@media screen and (max-width: 767px) {
.brand-slider .brand-layout--infinite.sm-column-1 .halo-item {
     width: 35vw !important;
}
}
</style>

RESULT:

Moeed_0-1727247155216.png

 

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

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


Asad712
Shopify Partner
26 0 11

it not work and i delete the previous code 

https://a68qc6kuhm4l6fpa-57675972670.shopifypreview.com

Previous code
<style>
.brand-slider .halo-row.brand-layout--infinite .halo-item {
width: 160px !important;
}
</style>
in this code mobile view has issue only

Asad ALI

Sangeetanahar
Explorer
541 36 69

hello @Asad712 

can you please share your Website URL
thanks

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me [email protected] - Skype: live:sangeetarahuldhiman -Whatsapp: +917009811712
Checkout Some Free Sections Here

Gul2024
Tourist
4 1 1

Any solution regarding this issue

BSS-TekLabs
Shopify Partner
2350 702 827

This is an accepted solution.

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

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
BSS-TekLabs
Shopify Partner
2350 702 827

This is an accepted solution.

- 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 </head> and press 'Save' to save it

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

- Here is the result you will achieve:

BSSTekLabs_0-1727357808657.png

 

- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
Asad712
Shopify Partner
26 0 11

Thank you for it works
This code actually worked 👍

Asad712_0-1727357976302.png

 


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

Asad ALI