Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter masterbip

    (@masterbip)

    Dear Pcandocodigo … is there a way to do it … not to get numbers but only left and right arrows/image ??
    Thanks again in advance.

    Plugin Author Fernando Briano

    (@fernandobt)

    Hi! Not yet, I hadn’t considered this. How would you know on which page you are? Just show the one page you’re in and the left and right arrows?

    Thread Starter masterbip

    (@masterbip)

    I have sorted this, but this would be a great feature.
    I used css to hide all elements but first and last item:

    .nav-redonda-gris-dos ul.lcp_paginator li{
    	display:none;
    	float:left;
    	text-indent:6500px;
    }
    .nav-redonda-gris-dos ul.lcp_paginator li:first-child{
    	display:block;
    	width:50px;
    	height:50px;
    	background:transparent url(../imagenes/left-off.png) no-repeat 0px 0px;
    	margin-right:6px;
    }
    .nav-redonda-gris-dos ul.lcp_paginator li:first-child a{
    	display:block;
    	width:50px;
    	height:50px;
    	background:transparent url(../imagenes/left-on.png) no-repeat 0px 0px;
    }
    .nav-redonda-gris-dos ul.lcp_paginator li:last-child{
    	display:block;
    	width:50px;
    	height:50px;
    	margin-left:6px;
    	background:transparent url(../imagenes/right-off.png) no-repeat 0px 0px;
    }
    .nav-redonda-gris-dos ul.lcp_paginator li:last-child a{
    	display:block;
    	width:50px;
    	height:50px;
    	background:transparent url(../imagenes/right-on.png) no-repeat 0px 0px;
    }

    Well … there is a lot more code but it’s an idea of what i made.

    Keep the idea in mind for a future update. Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Custom Pagination’ is closed to new replies.