Arrow not showing in Fabric theme

Arrow not showing in Fabric theme

NOT1
Shopify Partner
287 2 128

When i use the product list in craousel the scroll arrows dosent appear on desktop. Somehow i tried increasing the gaps i saw the arrowes are under the products thats why they are not showing what can i do?

 

https://thenewbeast.myshopify.com/

000

Replies 4 (4)

Devinlabs
Shopify Partner
21 2 6

Your carousel arrows are hidden because they're placed under the product items due to CSS layering issues.
Add custom CSS like z-index: 10 and position: absolute to the arrow container to bring them above.
Also ensure your theme's carousel settings have arrows enabled and properly positioned.

DevinLabs Solutions
Email at info@devinlabs.com, devinlabsolutions@gmail.com

Hire us at: Shopify Support

MandasaTech
Shopify Partner
793 154 166

Hello @NOT1 

It sounds like the scroll arrows are being hidden behind the product cards due to a z-index or positioning issue. Here’s how you can fix it:

  1. Inspect the arrows using your browser’s developer tools to find their class (usually something like .slider-button or .carousel__arrow).

  2. Then, try adding this custom CSS to bring them above the product cards:

.carousel__arrow {
  z-index: 10 !important;
  position: relative;
}

If they're still not showing properly, you might also need to adjust margins or padding around the carousel:

.product-carousel {
  padding: 0 40px; /* Add horizontal padding so arrows have space */
  position: relative;
}

And if the arrows are inside another container with overflow: hidden, try this:

.carousel-container {
  overflow: visible !important;
}


Let me know if you have any issues!

☞ Helpful or Question answered? Please Click Like & Mark it Accepted Solution
☞ Want to modify or custom changes on store for affordable price? Click on Contact button here
☞ Email at experts@mandasa.in
☞ Whatsapp at +918989609120 | Hire us at: Website Support Page
☞ Selling Shopify Fundamentals: Verified Skill Badge
NOT1
Shopify Partner
287 2 128

None of them worked 

MandasaTech
Shopify Partner
793 154 166

Can you share any screenshot with us, so we can check.

☞ Helpful or Question answered? Please Click Like & Mark it Accepted Solution
☞ Want to modify or custom changes on store for affordable price? Click on Contact button here
☞ Email at experts@mandasa.in
☞ Whatsapp at +918989609120 | Hire us at: Website Support Page
☞ Selling Shopify Fundamentals: Verified Skill Badge