Arrow to scroll on mobile timeline widget

Would it be possible to add a grey arrow on the timeline widget when viewed on mobile. Right now it’s not really clear that the visitor has to scroll to move on to the next one. The arrow is visible on desktop, but it would be great to have this on mobile as well.

Thank you!

1 Like

Hi there and welcome to the Community, @Stan_van_Subsidie_Ex :waving_hand:

Unfortunately, it’s impossible to add an arrow that will scroll events when clicking on mobile. However, you can add a hint prompting users to see more events. For this, please add this code to the Custom CSS field on the Settings tab of your widget’s settings:

@media (max-width: 480px) {
  .es-snap-carousel-item:first-child:after {
    content: "Swipe to see more ->";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 20px;
    border-radius: 50px;
    opacity: 0.5;
    border: 2px dashed black;
    white-space: nowrap;
  }
}

You can set any text for your hint in the 3rd line of the code:

We also have a request for the Vertical layout on mobile devices to display all events right away. Feel free to upvote this idea if you’d like it to be released :slightly_smiling_face: - Vertical layout for mobile view