MyBB Community Forums

Full Version: Font change doesnt effect at all section.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi all of MyBB family.
I am using our local language font at my board. I edited css files to change board main font face. Over all of my board its viewing my local Language font. But some section is just viewing Board default font. At the image I added here the green blocked sections are ok but the red blocked sections are viewing my local language with site default font.

[Image: mybb.jpg]

All single line text entry field like user name field on user login, Thread subject field, PM subject fields also not using my local font. The text on command buttons, quick jump to forum, etc cant use my local font. Please help me how can I use my local font for all of this sections. Which file should I have to edit.
[My Board]
[My Boards Font]
Thanx to all.
You've used body in CSS right? Try using:
* { font-family: localfont; }
(2010-07-05, 11:55 AM)patrick Wrote: [ -> ]You've used body in CSS right? Try using:
* { font-family: localfont; }

Yes, I uses as:
font-family: SolaimanLipi;
SolaimanLipi is our local font.
you missed my point. Change:
body {
	background: #efefef url(http://www.purob.com/images/bg.gif);
	color: #000;
	font-family: SolaimanLipi;
	font-size: 15px;
	text-align: center; /* IE 5 fix */
	line-height: 1.4;
}
with
* {
	font-family: SolaimanLipi;
}
body {
	background: #efefef url(http://www.purob.com/images/bg.gif);
	color: #000;
	font-size: 15px;
	text-align: center; /* IE 5 fix */
	line-height: 1.4;
}
Oh nice, it works.

Thanks a lot........patrick