MyBB Community Forums

Full Version: Button font
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello dear users, can i change this buttons font?

[Image: asdasd.jpg]

if so, how can I do ?
Find this in Global.css
.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.
and color can i change? i want to make red, plz help me
(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.
thx you