2015-04-27, 07:27 PM
2015-04-27, 07:42 PM
Find this in Global.css
Change it to
Where "x" is, just type in the font name. That should work.
.postbit_buttons > a:link,.postbit_buttons > a:hover,.postbit_buttons > a:visited,.postbit_buttons > a:active{
display:inline-block;
padding:2px 5px;
margin:2px;
font-size:11px;
background:#eee url(../../../images/buttons_bg.png) repeat-x;
border:1px solid #ccc;
color:#555
}
Change it to
.postbit_buttons > a:link,.postbit_buttons > a:hover,.postbit_buttons > a:visited,.postbit_buttons > a:active{
display:inline-block;
padding:2px 5px;
margin:2px;
font-size:11px;
background:#eee url(../../../images/buttons_bg.png) repeat-x;
border:1px solid #ccc;
color:#555
font-family: x
}
Where "x" is, just type in the font name. That should work.
2015-04-27, 07:53 PM
and color can i change? i want to make red, plz help me
2015-04-27, 07:58 PM
(2015-04-27, 07:53 PM)possessed12 Wrote: [ -> ]and color can i change? i want to make red, plz help me
.postbit_buttons > a:link,.postbit_buttons > a:hover,.postbit_buttons > a:visited,.postbit_buttons > a:active{
display:inline-block;
padding:2px 5px;
margin:2px;
font-size:11px;
background:red;
border:1px solid red;
color:#fff;
font-family: x
}
Just replace the "x" again with your font. The buttons are now red, and the text is white.
2015-04-27, 08:01 PM
thx you