Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Josh Leuze

    (@jleuze)

    Hi, you can do this with a little custom CSS to hide the previous the previous button and make the next button full size, but you won’t be able to use slide links with this type of navigation:

    ul.meteor-nav .prev {
    	display: none;
    }
    .meteor-nav .next a,
    .meteor-nav .next a:hover {
    	background: none;
    	width: 100%;
    }
    Thread Starter Matís d'Arc

    (@matthiaspue)

    thank you, great. it is nearly working, but the arrows are still displayed and somehow flip over the screen from the left to the right when mouse over.
    do you know why?

    https://www.luhmendarc.de/rope-gallery/

    Plugin Author Josh Leuze

    (@jleuze)

    There are some theme conflicts, try this:

    ul.meteor-nav .prev {
    	display: none;
    }
    ul.meteor-nav .next a,
    ul.meteor-nav .next a:hover {
    	background: none !important;
    	transition: none;
    	width: 100%;
    }
    ul.meteor-nav li:before {
    	display: none;
    }
    Thread Starter Matís d'Arc

    (@matthiaspue)

    jipiiii, now it works!!
    thank you a lot again!

    Plugin Author Josh Leuze

    (@jleuze)

    You’re welcome!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘navigation with click on slide’ is closed to new replies.