How to remove lines

Topic summary

A user seeks help removing two visible lines from a slideshow section on their Shopify store, sharing a screenshot showing the issue.

Two solutions provided:

  1. Made4uo-Ribe’s approach: Navigate to Shopify admin → Online Store → Themes → Edit code → Assets folder. Add CSS code .slideshow__controls { border: 0 !important; } to the bottom of base.css, style.css, or theme.css file. Includes a result screenshot showing the fix.

  2. DaisyVo’s approach: Go to Shopify admin → Online Store → Customize → Theme settings → Custom CSS. Add the code .slideshow__controls.slider-buttons { border: none !important; }. Also provides a result screenshot.

Both solutions target the same slideshow controls element using CSS to remove borders. The second solution is slightly more specific in its selector and uses the Custom CSS interface rather than editing theme files directly.

Status: Two working solutions offered; awaiting confirmation from the original poster on which method was used or if the issue is resolved.

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

Hello friends, how can I remove these 2 lines in this section?

1 Like

Hi @NikosBat

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.slideshow__controls {
    border: 0 !important;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Hi @NikosBat ,

You can follow the steps here:

Step 1: Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
Step 2: From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/ypQ7nly2wv27
Step 3: Copy the code below and paste it there

Here is the code for step 3:

.slideshow__controls.slider-buttons {
    border: none !important;
}

Here is the result:

Please let me know if it works!

Best,

Daisy