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
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
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.
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
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
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
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.
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
For All List Elementsh1,h2,h3,h4,h5,h6 { font-family: 'Roboto Condensed', sans-serif; //(or your font family you chose on google) }
For All Paragraphsul li, ol li { font-family: 'Roboto Condensed', sans-serif; }
For All Linksp { font-family: 'Roboto Condensed', sans-serif; }
a, a:hover, a:visited { font-family: 'Roboto Condensed', sans-serif; }