Results 1 to 2 of 2

Thread: css pagination

  1. #1
    Join Date
    Sep 2009
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Thumbs up css pagination

    I found a nice css stuff at the css section of this site called " pagination" shall i used any php to get this css work properly? see the pagination css page

    http://www.dynamicdrive.com/style/cs...ination_links/
    This is Live Demp :

    Live Demo

    This is the css :

    Code:
     @charset "utf-8";
    /* CSS Document */
    html,body{
    	margin: 0px;
    	padding: 0px;
    	background: #FFFFFF 0px 0px;
    }
    #wrapper{
    	width: 1006px;
    	background: transparent url(../images/main_back.png) repeat-y;
    	margin-right: auto;
    	margin-bottom: 5px;
    	margin-left: auto;
    }
    .pagination{
    padding: 2px;
    }
    
    .pagination ul{
    	margin: 0;
    	padding: 0;
    	text-align: center; /*Set to "right" to right align pagination interface*/
    	font-size: 16px;
    }
    
    .pagination li{
    list-style-type: none;
    display: inline;
    padding-bottom: 1px;
    }
    
    .pagination a, .pagination a:visited{
    padding: 0 5px;
    border: 1px solid #9aafe5;
    text-decoration: none; 
    color: #2e6ab1;
    }
    
    .pagination a:hover, .pagination a:active{
    border: 1px solid #2b66a5;
    color: #000;
    background-color: #FFFF80;
    }
    
    .pagination a.currentpage{
    background-color: #2e6ab1;
    color: #FFF !important;
    border-color: #2b66a5;
    font-weight: bold;
    cursor: default;
    }
    
    .pagination a.disablelink, .pagination a.disablelink:hover{
    background-color: white;
    cursor: default;
    color: #929292;
    border-color: #929292;
    font-weight: normal !important;
    }
    
    .pagination a.prevnext{
    font-weight: bold;
    }

    This is Mark Up :


    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>pagination</title>
    <link href="css/css.css" rel="stylesheet" type="text/css" />
    </head>
    
    <body>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <div class="pagination">
    <ul>
    <li><a href="#" class="prevnext disablelink">« previous</a></li>
    <li><a href="index.htm" class="currentpage">1</a></li>
    <li><a href="1.htm">2</a></li>
    <li><a href="2.htm">3</a></li>
    <li><a href="3.htm">4</a></li>
    <li><a href="4.htm">5</a></li>
    <li><a href="5.htm">6</a></li>
    <li><a href="6.htm">7</a></li>
    <li><a href="7.htm">8</a></li>
    <li><a href="#">9</a>...</li>
    <li><a href="#">15</a></li>
    <li><a href="#">16</a></li>
    <li><a href="#" class="prevnext">next »</a></li>
    </ul>
    </div>
    
    </body>
    </html>
    Last edited by zoe20; 12-09-2009 at 02:03 PM.

  2. #2
    Join Date
    Sep 2009
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Thumbs up

    sorry for the bump. plz some one help me

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •