-
AuthorPosts
-
May 14, 2024 at 2:18 pm #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.jpgI have already tried a few things with CSS but unfortunately I can’t get any further…
Could you please help me?Best regards, Diana
May 15, 2024 at 4:51 am #1443555Hey 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,
IsmaelMay 24, 2024 at 10:31 am #1445489Hello 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
May 24, 2024 at 11:37 am #1445504can 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.
May 24, 2024 at 8:12 pm #1445619Hi,
Thanks for sharing @guenni007, did you have any luck with that code @DianaLoola73?
Best regards,
RikardMay 28, 2024 at 9:56 am #1446815Yes, thank you very very much. The code works perfectly!!!!
The topic is solved! -
AuthorPosts
- The topic ‘Timeline Navigation’ is closed to new replies.