This topic is locked
[SOLVED]

 Custom CSS for Pagination Phprunner 7.0

12/28/2013 7:07:38 PM
PHPRunner General questions
S
safesurf author

I put the code below in the Phprunner 7.0 custom css to change the pagination at bottom of page. Does anyone know how to change the next and previous

in custom css?
.pag_n

{

style='TEXT-DECORATION: none;

color: #717171;

background: #e9e9e9;

padding: 2px 4px;

margin-right: 0px;border-radius: 3px;border: solid 1px #c0c0c0;

text-shadow: 1px 1px 0px rgba(255,255,255, 0.7);

}

Sergey Kornilov admin 12/29/2013

Try something like this:

div.style1.rnr-bc.rnr-b-pagination a {

color: red;

font-size: 15px;

}
S
safesurf author 12/29/2013

I did this code below and it worked good to change pagination at bottom.
div.style1.rnr-bc.rnr-b-pagination a {

color: #717171;

background: #e9e9e9;

padding: 2px 4px;

margin-right: 0px;border-radius: 3px;border: solid 1px #c0c0c0;

box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;

text-shadow: 1px 1px 0px rgba(255,255,255, 0.7);

}
div.style1.rnr-bc.rnr-b-pagination a:hover {

background: #ffffff;

color: #000000;

}