How to remove the border below the slider in Dawn theme?

Hello Everyone,

Can someone please help me with the code needed to remove the border line that surrounds the buttons the the image slideshow? I am using Shopify Dawn theme.

Kind regards,
Els

Hi @lagentilestore

Would you mind to share your Store URL website? with password if its protected. Thanks!

Hi! Of course: https://la-gentile.com/

Hey @lagentilestore

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

I don’t see the in the theme.liquid file.
The only word with </ > in my theme.liquid file is: ..

Never mind, I found it is written at the end of a long line (see attached) should I place the code above that text? Or just before in between the text.

Hey @lagentilestore

Put in a different line and add the code right above

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Thank you for the information.

Try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • 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.slideshow__controls--top.slider-buttons.no-js-hidden.slideshow__controls--border-radius-mobile {
    border-bottom: none;
}
.slideshow__autoplay.slider-button {
    border-left: none;
}

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

It worked! Now only the border between the dots and pause/play button is still there.. Can that be removed as well?