How to make slideshow draggable and clickable + design of controls

Topic summary

A user seeks help with two slideshow customization issues:

1. Removing border line above controls:
Multiple solutions provided:

  • Edit component-slideshow.css, locate .slideshow__controls class (around line 102)
  • Replace or modify the border property with border: unset !important; or border: 0;
  • Can be added via Custom CSS section

2. Making slideshow draggable and clickable:

  • Requires custom coding to implement
  • One responder offers to help with the custom code implementation
  • Involves editing theme files in Online Store > Themes > Edit code

Current status:
The user attempted the border removal solution but reports it didn’t work, sharing a screenshot of their code implementation. The discussion remains open as the initial fix needs troubleshooting and the clickable/draggable functionality hasn’t been fully addressed yet.

Note: Several responses contain reversed/garbled text that appears to be encoding issues, making some technical details difficult to parse completely.

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

Hello,

i need help with two things, first one is - how to delete the small line that is over the controls. The second one how do i make the slideshow draggable and clickable. I was looking at other posts but nothing worked for me

thank you :))

https://81e325-28.myshopify.com/

0007

Hello @radaApeta

For the Border thing - attach a screenshot.

Go to component-slideshow.css
Class: slideshow__controls

You have great products with an extensive range - Please try something premium theme and develop on it.

Thank you

Hi @radaApeta

You can add this code to Custom CSS of that section to remove the line.

.slideshow__controls {
    border: unset !important;
}

To make image clickable, please go to Online Store > Themes > Edit code > open slideshow.liquid file, find this line of code

{%- if block.settings.image -%}

Add this code above it

{%- if block.settings.button_label != blank -%}
  
  
    {{- block.settings.button_label | escape -}}
  
{%- endif -%}

Hello @radaApeta - (1) how to delete the small line that is over the controls.

Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> component-slideshow.css ----> line number 102
search this code

.slideshow__controls {
border: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

and replace with this code.

.slideshow__controls {
border: 0rem solid rgba(var(--color-foreground),.08);
}

and the result will be

  1. To make the Slideshow Clickable - this will need custom coding to make it clickable.
    and i can help you in this custom coding, let me know.

If this was helpful, hit the like button and mark the job as completed.
Thanks

Thank you for you help, but it doesnt work. Did a paste the code right ?