How to remove lines

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