Log in

View Full Version : Spice Up Your vBulletin Forum with Google CSS3 Web Fonts


XiTCLUB
04-17-2013, 10:00 PM
Spice Up Your vBulletin Forum with Google CSS3 Web Fonts

In This Article i will show you, how you can make your forum more attractive and beautiful by changing the default font style of your forum. I am going to use Google web fonts as CSS3 fonts and tell you how you can use Google web fonts in your forum

1: Goto Google Web Fonts Directory Google Fonts (http://www.google.com/fonts/)

Now Chose the font style you like, you will see small buttons in bottom right of each font style. See screenshot for reference. Click on small "Quick use" Button, this will now display available options for how to using that font style

http://www.xitclub.com/attachments/web-designing-development-233/16445d1366312552-spice-up-your-vbulletin-forum-google-css3-web-fonts-capture.jpg

Scroll Down a bit and you see following screen. As you can see you have 3 options for using font style. I am using 1st method which is standard method.

http://www.xitclub.com/attachments/web-designing-development-233/16446d1366312717-spice-up-your-vbulletin-forum-google-css3-web-fonts-capture.png

2: Adding Google fonts stylesheet to your forum template

a) Goto Admincp > Styles & Templates > Style Manager > Select Your template > Edit > headinclude
b) Copy <link href..... Code from Google and paste at the bottom

3: Using Font Family

Now edit you "additional.css" template

For all Headings


h1,h2,h3,h4,h5,h6 { font-family: 'Roboto Condensed', sans-serif; //(or your font family you chose on google) }For All List Elements

ul li, ol li { font-family: 'Roboto Condensed', sans-serif; }For All Paragraphs

p { font-family: 'Roboto Condensed', sans-serif; }For All Links

a, a:hover, a:visited { font-family: 'Roboto Condensed', sans-serif; }

Princeton
04-19-2013, 10:26 AM
great article ... many will find this useful

joeychgo
04-23-2013, 01:03 PM
Very good! Thank you!

wacnstac
04-23-2013, 01:24 PM
Got an example link?

XiTCLUB
04-24-2013, 05:51 PM
Got an example link?

http://www.xitclub.com/

joeychgo
05-14-2013, 04:11 PM
Nice, thank you for this

abdobasha2004
05-25-2013, 10:10 PM
Google fonts are awesome, but there are few that support Arabic language !

XiTCLUB
07-27-2013, 09:27 PM
Google fonts are awesome, but there are few that support Arabic language !

Yup! they are adding new one's time by time. may be they add more arabic fonts soon

SBlueman
08-23-2013, 05:54 AM
Can you combine fonts? A different one for headers and paragraphs?

Bubble #5
09-01-2013, 01:24 AM
Great article. Very helpful. THANKS!:)

--------------- Added 1378059024 at 1378059024 ---------------

4.2.1

Is there a way to just use these fonts for posting purposes? :confused:

It's messing up the post bit area (where members stats are) and would like to either exclude that area OR just make posts with the new font.

XiTCLUB
09-08-2013, 11:48 AM
Great article. Very helpful. THANKS!:)

--------------- Added 1378059024 at 1378059024 ---------------

4.2.1

Is there a way to just use these fonts for posting purposes? :confused:

It's messing up the post bit area (where members stats are) and would like to either exclude that area OR just make posts with the new font.

its all about CSS, you can control via CSS all the font on your forum

--------------- Added 1378644547 at 1378644547 ---------------

Can you combine fonts? A different one for headers and paragraphs?

yes u can use different font-family for h1,h2,h3... and for <p> tags

Bubble #5
09-08-2013, 05:25 PM
its all about CSS, you can control via CSS all the font on your forum

Ok well that tells us it's possible, but not the CSS code that we need to use.

Anyone know? :confused:

Spangle
09-15-2013, 08:01 PM
Ok well that tells us it's possible, but not the CSS code that we need to use.

Anyone know? :confused:

additional.css overrides any other css.

The easiest way to find out what the css for a particular element is, is to use "inspect element" in Firefox, ( right click on the element, brings up a menu)

then post that css in additional.css with the command line, click on save and reload

As you are only editing additional.css it should be fairly easy to see if you get the desired effect.

If you need more help google css elements and you should get enough info to keep you going.

Cem01
08-24-2017, 11:36 AM
This article is so useful. Google fonts work great on my web site. Thank you!