Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1443415

    Dear Support Team
    on the following edit page we use a horizontal timeline: see http://neu2024.creative-wave.com/about-us/studio-history/#history
    Our customer would like the arrow for “back navigation” on the left side of the timeline and the one with the “next navigation” on the right side: see screenshot: http://neu2024.creative-wave.com/support/timeline.jpg

    I have already tried a few things with CSS but unfortunately I can’t get any further…
    Could you please help me?

    Best regards, Diana

    #1443555

    Hey Diana,

    Thank you for the inquiry.

    You can use this css code to adjust the position of the nav arrows:

    @media only screen and (min-width: 990px) {
    
      /* Add your Desktop Styles here */
      .avia-slideshow-arrows.avia-slideshow-controls.av-timeline-nav {
        width: calc(100% + 100px);
        overflow: visible;
      }
    
      #top .avia-timeline-container.av-slideshow-ui .avia-slideshow-arrows.av-visible-prev>a.prev-slide {
        left: 50px;
        top: 10px;
        position: absolute;
      }
    
      #top .avia-timeline-container.av-slideshow-ui .avia-slideshow-arrows>a.next-slide {
        right: 0;
        left: auto;
        position: absolute;
        top: 10px;
      }
    
      #top ul.avia-timeline.avia-timeline-horizontal.av-milestone-placement-top.avia-timeline-.avia_animate_when_almost_visible.avia-timeline-animate.avia_start_animation {
        margin-left: 50px;
      }
    }

    Best regards,
    Ismael

    #1445489

    Hello Ismael

    I have integrated your code into the CSS: but now only the right arrow (next) is visible, the left arrow (back) is unfortunately not recognizable: see http://neu2024.creative-wave.com/about-us/studio-history/#history
    What do I have to change so that I can also see it?

    Best regards Diana

    #1445504

    can you please remove the css code from Ismael and insert instead :
    ( because of .avia-slideshow-carousel must stay overflow: hidden – the left arrow is not visible )

    @media only screen and (min-width: 990px) {
      .avia-timeline-container {
        padding: 0 40px;
      }
    
      .av-timeline-nav {
        padding-top: 0px;
        width: 100%;
        overflow: visible !important;
      }
    
      #top .avia-timeline-container.av-slideshow-ui .avia-slideshow-arrows.av-visible-next > a.next-slide {
        position: absolute;
        top: 0px;
      }
    
      #top .avia-timeline-container.av-slideshow-ui .avia-slideshow-arrows.av-visible-prev > a.prev-slide {
        position: absolute;
        top: 0px;
      }
    }

    maybe you like to include to that media-query a setting to have more space for the :

    .avia-timeline-horizontal.av-milestone-placement-top .av-milestone-content-wrap {
      padding: 30px 15px 10px 80px;
    }

    after that we can see if we need to fix some other settings.

    #1445619

    Hi,

    Thanks for sharing @guenni007, did you have any luck with that code @DianaLoola73?

    Best regards,
    Rikard

    #1446815

    Yes, thank you very very much. The code works perfectly!!!!
    The topic is solved!

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Timeline Navigation’ is closed to new replies.