Advertisement
joris

Paging Style 2

Jul 17th, 2012
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.99 KB | None | 0 0
  1. <?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');?>
  2. <style>
  3. #pagination div
  4. {
  5.     padding: 3px;
  6.     margin: 3px;
  7. }
  8.  
  9. #pagination div a
  10. {
  11.     padding: 2px 5px 2px 5px;
  12.     text-decoration: none;
  13.     color: #717171;
  14.     font: bold 11px Arial, sans-serif;
  15.     text-shadow: 0px 1px white;
  16.     padding: 5px 8px;
  17.  
  18.     -webkit-border-radius: 3px;
  19.     -moz-border-radius: 3px;
  20.     border-radius: 3px;
  21.  
  22.     -webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.35);
  23.     -moz-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.35);
  24.     box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.35);
  25.     background: #f9f9f9;
  26.  
  27.     background: -webkit-linear-gradient(top, #f9f9f9 0%, #e8e8e8 100%);
  28.     background: -moz-linear-gradient(top, #f9f9f9 0%, #e8e8e8 100%);
  29.     background: -o-linear-gradient(top, #f9f9f9 0%, #e8e8e8 100%);
  30.     background: -ms-linear-gradient(top, #f9f9f9 0%, #e8e8e8 100%);
  31.     background: linear-gradient(top, #f9f9f9 0%, #e8e8e8 100%);
  32.     filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#e8e8e8',GradientType=0 );
  33. }
  34.  
  35.  
  36. div.pagination a
  37. {
  38.     padding: 2px 5px 2px 5px;
  39.     margin: 2px;
  40.     border: 1px solid #AAAADD;
  41.     text-decoration: none; /* no underline */
  42. }
  43.  
  44. </style>
  45. <?php
  46. foreach($hasil->result() as $row) :
  47. $isi = $row->isi;
  48. $isi = substr($isi, 0, 480);
  49. ?>
  50. <?php
  51. $TanggalIndo = date("d-m-Y", strtotime($row->tgl));
  52. ?>
  53. <table cellpadding="0" cellspacing="8" style="font-size:10px;">
  54. <tr>
  55.     <td colspan="2">
  56.     <div id="FoamRegularCondensed">
  57.     <?php echo anchor('menu/blog/artikel/'.$row->slug, $row->judul); ?> | <font size="2"><?php echo $TanggalIndo; ?></font>
  58.     </div>
  59.     </td>
  60. </tr>
  61. <tr>
  62.     <td valign="top" style="font-size:10px;"><?php echo $isi; ?> ...</td>
  63. </tr>
  64. <tr>
  65.     <td colspan="2" style="border:#CCC dotted 1px;"></td>
  66. </tr>
  67. </table>
  68.  
  69. <?php
  70. endforeach;
  71.     echo "<div id='pagination'><div class='pagination' style='font-size:10px;font-family:Tahoma, Geneva, sans-serif;font-weight:bold;'>".$this->pagination->create_links()."</div></div>";
  72.  
  73. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement