Remove featured collection arrows/numbers on craft 14.0

Topic summary

A user seeks CSS code to remove arrow counters from the featured collection section in Shopify’s Craft theme version 14.0.

Solutions Provided:

Two working approaches were shared:

  • PageFly-Richard’s method: Add custom CSS code to theme.liquid file above the </head> tag
  • EBOOST’s method: Insert CSS code at the end of assets/base.css file targeting the featured collection slider buttons with display: none

Both solutions involve:

  1. Navigating to Online Stores > Themes > Edit code
  2. Locating the appropriate file (theme.liquid or assets/base.css)
  3. Adding CSS to hide the slider navigation elements

Outcome: The original poster confirmed the solution worked successfully, and another user also reported success with the fix.

Summarized with AI on November 8. AI used: claude-sonnet-4-5-20250929.

Any codes to remove the arrow counter for the featured collection in Craft 14.0 Theme?

Hi @Scentedcc

This is Richard from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the


Hope this can help you solve the issue

Best regards,

Richard | PageFly

2 Likes

Hi @Scentedcc ,

May I suggest to update code these steps:

  1. Go to Store Online-> theme → edit code

  1. Assets/base.css
  2. Add code below to end of file
div[id*="featured-collection"] .slider-buttons {
  display: none;
}
1 Like

This worked - thank you!

thank you this worked for me