Advertisement
alchymyth

Untitled

Apr 8th, 2011
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.15 KB | None | 0 0
  1. there is nothing 'default styles' - these are styled within style.css of your theme, about in the middle:
  2.  
  3. `/* Pagination -------------- */
  4.  
  5. .pagination{
  6.     background:#fff;
  7.     width:618px;
  8.     margin:0 0 0 1px;
  9. }
  10.  
  11. .wp-pagenavi{
  12.     padding:30px 25px 30px 25px;
  13.     float:left;
  14. }
  15.  
  16.  
  17. .pagination span{
  18.     float:left;
  19.     display:block;
  20.     font-family:Georgia, "Times New Roman", Times, serif;
  21.     font-style:italic;
  22.     font-size:12px;
  23.     color:#666666;
  24.     padding:3px 20px 0 0;
  25. }
  26.  
  27. .pagination a, .wp-pagenavi .current{
  28.     display:block;
  29.     float:left;
  30.     padding:3px 9px 2px 9px;
  31.     border:1px solid #c6c6c6;
  32.     color:#999;
  33.     -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  34.     -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  35.     margin:0 6px 0 0;
  36. }
  37.  
  38. .pagination a:hover{
  39.     border:1px solid #999;
  40.     color:#444444;
  41. }
  42. `
  43.  
  44. and right at the end:
  45.  
  46. `/****** Pagenavi ********/
  47. .wp-pagenavi {
  48.     clear: both;
  49. }
  50.  
  51. .wp-pagenavi a, .wp-pagenavi span {
  52.     text-decoration: none;
  53.     border: 1px solid #BFBFBF;
  54.     padding: 3px 5px;
  55.     margin: 2px;
  56. }
  57.  
  58. .wp-pagenavi a:hover, .wp-pagenavi span.current {
  59.     border-color: #000;
  60. }
  61.  
  62. .wp-pagenavi span.current {
  63.     font-weight: bold;
  64. }`
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement