How to remove red lines from a Dawn theme slideshow without changing other features?

Topic summary

A user seeks to remove two small red lines appearing on slideshow controls across their Dawn theme website while preserving all other design elements, including navigation dots.

Proposed Solutions:

Two respondents provided CSS code snippets targeting the slideshow controls:

  • Solution 1: Add code to base.css file:

    .slideshow__controls {
      border: none !important;
    }
    
  • Solution 2: Similar CSS approach targeting .slideshow__controls with border: none

Both solutions involve accessing the theme code editor (Online Store > Themes > Actions > Edit Code) and modifying the stylesheet to hide borders on slideshow control elements.

Status: The discussion remains open with no confirmation from the original poster about whether either solution successfully resolved the issue. The responses appear partially corrupted with reversed/encoded text, though the core CSS recommendations are clear.

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

Hello, I did some modifications on the css of my slideshow template in my website, I would like to delete the 2 littles redlines on all my website’s slideshows withour modifying the way they look on any other points of course (so keeping the dots and the size).

Store URL : https://0e0f82.myshopify.com/

Thanks in advance

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
.slideshow__controls {
border: none!important;
}

1 Like

Use this code

.slideshow__controls {
border: none
}
1 Like