MyBB Community Forums
Button font - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: 1.8 Support (https://community.mybb.com/forum-175.html)
+--- Forum: General Support (https://community.mybb.com/forum-176.html)
+--- Thread: Button font (/thread-170102.html)



Button font - possessed12 - 2015-04-27

Hello dear users, can i change this buttons font?

[Image: asdasd.jpg]

if so, how can I do ?


RE: Button font - Sazze - 2015-04-27

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.


RE: Button font - possessed12 - 2015-04-27

and color can i change? i want to make red, plz help me


RE: Button font - Sazze - 2015-04-27

(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.


RE: Button font - possessed12 - 2015-04-27

thx you