What's your biggest current challenge? Have your say in Community Polls along the right column.

adding arrow opacity of 40% onto mobile page

Solved

adding arrow opacity of 40% onto mobile page

tigrisjewelryco
Excursionist
21 0 1

Can anyone help me add this arrow on my mobile page so customer know to scroll right 🙂

 

https://tigrisjewelry.com/

password:enzo

 

BEFORE  

IMG_7041.PNG

 

 

AFTER

1.png

Accepted Solution (1)

Dan-From-Ryviu
Shopify Partner
10295 2043 2114

This is an accepted solution.

Hi @tigrisjewelryco 

You can do that by adding this code to theme.liquid file, after <head> in Online Store > Themes > Edit code 

<style>
@media (max-width: 749px) {
    .floating-controls-container { position: relative; }
    .floating-controls-container>.floating-controls-container__control {
        display: block !important;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 100;
        opacity: 0.4;
    }
    carousel-prev-button.floating-controls-container__control {
        left: 32px;   
    }
    carousel-next-button.floating-controls-container__control {
        right: -16px;
    }
}
</style>

Screenshot 2024-11-11 at 09.48.58.png

 

- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

View solution in original post

Replies 2 (2)

Dan-From-Ryviu
Shopify Partner
10295 2043 2114

This is an accepted solution.

Hi @tigrisjewelryco 

You can do that by adding this code to theme.liquid file, after <head> in Online Store > Themes > Edit code 

<style>
@media (max-width: 749px) {
    .floating-controls-container { position: relative; }
    .floating-controls-container>.floating-controls-container__control {
        display: block !important;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 100;
        opacity: 0.4;
    }
    carousel-prev-button.floating-controls-container__control {
        left: 32px;   
    }
    carousel-next-button.floating-controls-container__control {
        right: -16px;
    }
}
</style>

Screenshot 2024-11-11 at 09.48.58.png

 

- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

tigrisjewelryco
Excursionist
21 0 1

thank you so much!