How can I move slider arrows to a different position inside the slider?

Hi

I am trying to achieve this slider design in the attached picture, but when i’m trying to edit my slider i can’t move the slider arrows to a different position just like the pic. Is there a way i can achieve that?

@samliew , @sabanna , @cyberdave

Any help? Please assist me.

Ill be glad to assist you @brilliantlights.

Before we do anything though, can you please share your read only link with me so I could see where you are currently and help you from there? Thanks! :sunglasses:

Thanks for assisting.

I was playing around with absolute positioning but i don’t know if my method is the standard and perfect way. I fear the client might view the arrow icons differently on a different browser.

https://preview.webflow.com/preview/koad?preview=de430d5f144f3c4a4692cdfc1d6c20fc

Please help me check the arrow positioning if thats the best way to do it

The slider number element is not done properly.

You will have to do the following before I can help you:

  • First, undo the changes on the slider arrows back to it’s original position. Hide them (not delete!) if you want to.

  • Second, recreate the arrows in the position that you want. One link block per arrow. Do not lump them together with the 1-10 text in the middle like what you have done.

  • Third, give your slider an ID of myCustomSlider.

Thanks @samliew

Where i can’t figure out is the step two because thats what i want to achieve just like the image in the first post. I used absolute positioning to move them around in % but i’m scared the client might view it differently on a different laptop screen size.

I have done 1 and 3 but if you can help me with my request, i’ll be glad. :relaxed:

I’m not asking you to modify the arrows, I’m asking you to create a new set, that I will help you link to the hidden ones. You can place them anywhere in the page.

I have created a new slider (a copy of the older one) if that’s what you mean but the slider arrows are in their default position.

No, don’t duplicate the entire slider. Make new arrows. Hide the real one.

Thanks @samliew i have done exactly as you instructed. How do i link the custom arrows to the slider arrows? You are the best! :slight_smile:

Wonderful. One last step, I need this to see the actual output of your site to write the code, so could you publish and send me the live link?

Great.

Here it is: https://preview.webflow.com/preview/koad?preview=de430d5f144f3c4a4692cdfc1d6c20fc

http://koad.webflow.io

I assume this slider exists on this page only.

Open up page settings (P), click on the gear icon of this page,
go all the way to the bottom to Custom Code > Footer Code, and paste this inside:

<script>
var Webflow = Webflow || [];
Webflow.push(function() {
  var l = $('#myCustomSlider .w-slider-arrow-left');
  var r = $('#myCustomSlider .w-slider-arrow-right');
  $('#myCustomSlider')
    .on('click', '.slider-left', function() {
      l.trigger('tap');
    })
    .on('click', '.slider-right', function() {
      r.trigger('tap');
    });
});
</script>

Save and publish and view at http://koad.webflow.io

5 Likes

2 posts were split to a new topic: Text not aligning middle vertically

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.