Joeychgo
06-10-2005, 05:02 AM
Needed Addition - Header (h1, h2 & h3) tags
Google and other search engines like to see header (h1, h2 and h3) tags on pages. This helps search engines determine the context of a page. They arent required, but any help you can give them is good. It also helps adsense determine the context of a page and helps deliver more relevant ads.
Search engines also like to see header tags that match or resemble the page title and description.
W3C (http://www.w3.org/) also recommends the use of header tags as important to the quality construction of a webpage.
(http://www.w3.org/QA/Tips/Use_h1_for_Title)
vBulletin 3.50 doesnt use header tags in their new design for some reason.
Here is how to do it. Its quite simple.
in the FORUMHOME template look for
$navbar
And below it add:
<center>
<h1><font size="4">$vboptions[bbtitle]</font></h1>
<h3><font size="3">$vboptions[description]</font></h3>
</center>
in the FORUMDISPLAY template look for
$navbar
And below it add:
<center>
<h1><font size="4">$foruminfo[title]</font></h1>
<h3><font size="3">$foruminfo[description]</font></h3>
</center>
in the SHOWTHREAD template look for
$navbar
And below it add:
<center>
<h1><font size="4">$thread[title]</font></h1>
<h2><font size="3">$foruminfo[title]</font></h2>
<h3><font size="2">$foruminfo[description]</font></h3>
</center>
in the SHOWTHREAD_SHOWPOST template look for
$navbar
And below it add:
<center>
<h1><font size="4">$thread[title]</font></h1>
<h3><font size="2">$foruminfo[title]</font></h3>
</center>
in the MEMBERINFO template look for
$navbar
And below it add:
<center>
<h1><font size="4">$userinfo[username]</font></h1>
<h3><font size="3">$userinfo[field2]</font></h3>
</center>
($userinfo[field2] is the profile field for Location)
Google and other search engines like to see header (h1, h2 and h3) tags on pages. This helps search engines determine the context of a page. They arent required, but any help you can give them is good. It also helps adsense determine the context of a page and helps deliver more relevant ads.
Search engines also like to see header tags that match or resemble the page title and description.
W3C (http://www.w3.org/) also recommends the use of header tags as important to the quality construction of a webpage.
(http://www.w3.org/QA/Tips/Use_h1_for_Title)
vBulletin 3.50 doesnt use header tags in their new design for some reason.
Here is how to do it. Its quite simple.
in the FORUMHOME template look for
$navbar
And below it add:
<center>
<h1><font size="4">$vboptions[bbtitle]</font></h1>
<h3><font size="3">$vboptions[description]</font></h3>
</center>
in the FORUMDISPLAY template look for
$navbar
And below it add:
<center>
<h1><font size="4">$foruminfo[title]</font></h1>
<h3><font size="3">$foruminfo[description]</font></h3>
</center>
in the SHOWTHREAD template look for
$navbar
And below it add:
<center>
<h1><font size="4">$thread[title]</font></h1>
<h2><font size="3">$foruminfo[title]</font></h2>
<h3><font size="2">$foruminfo[description]</font></h3>
</center>
in the SHOWTHREAD_SHOWPOST template look for
$navbar
And below it add:
<center>
<h1><font size="4">$thread[title]</font></h1>
<h3><font size="2">$foruminfo[title]</font></h3>
</center>
in the MEMBERINFO template look for
$navbar
And below it add:
<center>
<h1><font size="4">$userinfo[username]</font></h1>
<h3><font size="3">$userinfo[field2]</font></h3>
</center>
($userinfo[field2] is the profile field for Location)

