Remove nav arrows from product page - Focal Theme

Solved

Remove nav arrows from product page - Focal Theme

galleriste
Pathfinder
102 1 16

How do I remove these arrows? FullSizeRender_a1d0d45d-bbe3-4213-a1ac-b71139feaa31.jpg

Here is the site: https://568839.myshopify.com/

Accepted Solution (1)
devcoders
Shopify Partner
1544 182 475

This is an accepted solution.

Hello @galleriste 

Go to Online Store, then Theme, and select Edit Code.
Search for assets/base.css Add the provided code at the end of the file.

@media screen and (max-width: 767px) {
flickity-controls.product__media-nav {
    justify-content: center;
}
.product__media-prev-next.hidden-lap-and-up.tap-area.tap-area--large {
    display: none;
}
.product__media-prev-next.hidden-lap-and-up.tap-area.tap-aera--large {
    display: none;
}
}

 

devcoders_0-1736360887424.png

 

Shopify Developer: Helping eCommerce Stores
If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!

View solution in original post

Replies 5 (5)

devcoders
Shopify Partner
1544 182 475

Hello @galleriste 

 

Go to Online Store, then Theme, and select Edit Code.
Search for assets/base.css Add the provided code at the end of the file.

 

@media screen and (max-width: 767px) {
.product__media-nav {
display: none;
}
}
Shopify Developer: Helping eCommerce Stores
If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!
galleriste
Pathfinder
102 1 16

This also removed the navigation dots. I only want the arrows gone

devcoders
Shopify Partner
1544 182 475

This is an accepted solution.

Hello @galleriste 

Go to Online Store, then Theme, and select Edit Code.
Search for assets/base.css Add the provided code at the end of the file.

@media screen and (max-width: 767px) {
flickity-controls.product__media-nav {
    justify-content: center;
}
.product__media-prev-next.hidden-lap-and-up.tap-area.tap-area--large {
    display: none;
}
.product__media-prev-next.hidden-lap-and-up.tap-area.tap-aera--large {
    display: none;
}
}

 

devcoders_0-1736360887424.png

 

Shopify Developer: Helping eCommerce Stores
If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!
galleriste
Pathfinder
102 1 16

Thanks!

devcoders
Shopify Partner
1544 182 475

Hello @galleriste 

You're very welcome! I'm glad to hear that you're pleased with the outcome. Please feel free to reach out if you need further assistance.

If my assistance was helpful, please consider liking and accepting the solution. Thank you!

Shopify Developer: Helping eCommerce Stores
If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!