MyBB Community Forums

Full Version: How to change font family
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi Friends,
I want to change font family of my theme...I tried it by changing in global css but unable to do.
I am editing this code:-

body {
background: #ffffff url(images/qws-tech/bkgnew.gif) repeat-x;
color: #000;
line-height: 1.4;
font-family: Verdana, Arial, Sans-Serif;
font-size: 13px;
}

to:-
body {
background: #ffffff url(images/qws-tech/bkgnew.gif) repeat-x;
color: #000;
line-height: 1.4;
font-family: Open-Sans;
font-size: 13px;
}

but font is changing to serif.....please help

I have tried this also

font-family: Open Sans, Sans-Serif;

but not working
Hi azizkasam,

You need to import your font on the top of your code (global.css) like this :

@import url(http://fonts.googleapis.com/css?family=Open+Sans);

And using it like this

body {
background: #ffffff url(images/qws-tech/bkgnew.gif) repeat-x;
color: #000;
line-height: 1.4;
font-family: Open-Sans, Arial, Sans-Serif;
font-size: 13px;
}

Best Regards
Hi Cwis,

Thank you very much but it's working this way

Open Sans, Arial, Sans-Serif;

some more question... please refer to captures..

first capture is from this url
http://dev.dealsfinderindia.com/

I want same menu at my forum

http://www.dealsfinderindia.com/community/

Please help

Best Regards
What browser do you use?

It works now?