PHP Classes

Starting from lowest to highest

Recommend this page to a friend!

      Easy Pagination Class  >  All threads  >  Starting from lowest to highest  >  (Un) Subscribe thread alerts  
Subject:Starting from lowest to highest
Summary:Starting from lowest to highest
Messages:3
Author:Artur Austin Umbelino
Date:2014-06-09 13:47:47
Update:2014-06-25 16:29:30
 

  1. Starting from lowest to highest   Reply   Report abuse  
Picture of Artur Austin Umbelino Artur Austin Umbelino - 2014-06-09 13:47:47
How to put the paging by starting from lowest to highest? Thank you all.

  2. Re: Starting from lowest to highest   Reply   Report abuse  
Picture of mohsen movahed mohsen movahed - 2014-06-25 12:08:28 - In reply to message 1 from Artur Austin Umbelino
you should add this css code:
*
{
direction: ltr;
}
and .paging li change to:
.paging li
{
float: left;
margin-left: 10px;
}

* example file (index.php) has been changed in the repository.
this link is preview : http://www.paging.shahed-epg.ir

  3. Re: Starting from lowest to highest   Reply   Report abuse  
Picture of Artur Austin Umbelino Artur Austin Umbelino - 2014-06-25 16:29:30 - In reply to message 2 from mohsen movahed
Very Thanks!