Go Back   vBulletin Setup > vBulletinSetup Information > vBulletin SEO Tips and SEO Questions


Please Register to get full access to the forums.
Post New Thread  Reply



#1   07-30-2006, 10:29 PM
Send a message via AIM to Brandon Send a message via MSN to Brandon Send a message via Yahoo to Brandon Brandon is a glorious beacon of lightBrandon is a glorious beacon of lightBrandon is a glorious beacon of lightBrandon is a glorious beacon of light Join Date: Jul 2006 Posts: 9,813 Location: Topeka, KS
Navbar template changes


Changing the navbits to an h1

I have changed the navbits so that the current breadcrumb is in <h1>.

Style Manager/Main CSS - add to the "Additional CSS definitions"


Code:
.h1navbar
  {
    font-family:verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;  
    margin:0;
    font-size: 14px;
    font-weight: bold;	
    display: inline;
  }


add the following as well for the firstwords:

Code:
 .navbar2
  {
	font-family:verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;  
   margin-bottom:5pt;
   margin-top:5px;
   font-size:8pt;
  }

Edit the navbar template

replace:

Code:
<strong>$navbits[lastelement]</strong>


with:

Code:
<h1 class="h1navbar">$navbits[lastelement]</h1>

and replace:

Code:
<strong>$vboptions[bbtitle]</strong>


with:

Code:
<h1 class="h1navbar">$vboptions[bbtitle]</h1>



Firstwords on the page

Google likes paragraphs at the top of pages that include the search phrases. Often it will use this paragraph for its snippet. Therefore, you need to use the search phrase (ie title) minimum twice within around 157 characters. The firstwords are used in both the main forum index page, thread and forum. For the index page, I use the guest welcome message. In addition, I tweak the guest welcome phrase - Languages and Phrases, Search in phrases - for "If this is your first visit".

On the NAVBAR template

after what was:

Code:
<strong>$vboptions[bbtitle]</strong></div>
 		</if>

now

Code:
<h1 class="h1navbar">$vboptions[bbtitle]</h1></div>
</if>


add - your version of:


Code:
<if condition="THIS_SCRIPT=='member'">
<div class="navbar2">
The userprofile of $userinfo[username]. Domain.com - a community of ... discussing ...</div>
<else />
<if condition="THIS_SCRIPT=='index'">
	<if condition="$show['guest']">
	<!-- guest welcome message -->
<div class="navbar2">
Welcome to domain.com. keyword laden good english text
<phrase 1="faq.php$session[sessionurl_q]" 2="register.php$session[sessionurl_q]">$vbphrase[first_visit_message]</phrase>
	<!-- / guest welcome message -->
	</if>
<else />

<if condition="THIS_SCRIPT=='poll'">
<div class="navbar2">The poll results for <b>$threadinfo[title]</b>.</div>
 
 <else />
 
 <if condition="$thread[title]">
<div class="navbar2"><b>$thread[title]</b><if condition="$pagenumber>1"> Page $pagenumber</if>. Discuss <i>$thread[title]</i>, on domain.com sales pitch. $foruminfo[title].</div>
 
 <else />
 <if condition="$foruminfo[title]">
  <div class="navbar2">
$foruminfo[title] <if condition="$pagenumber>1">Page $pagenumber </if> on domain.com. $foruminfo[description]</div>
 </if></if></if></if></if>


As an interesting addition, for one client, I have added a guest intro for every page in two parts - the normal guest intro phrase every page, and for just the first page, the full intro.. Plugin attached for vbulletin 3.5 series.

Then at the end of the navbar template use the following:

Code:
 

<if condition="THIS_SCRIPT<>'index'">
<if condition="!$show['member']">
<!-- guest welcome message -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
	<td class="alt1" width="100%">
<div class="navbar2">
<if condition="!$lastvisitb">
<phrase 1="faq.php$session[sessionurl_q]" 2="register.php$session[sessionurl_q]">$vbphrase[first_visit_message]</phrase>
<else />

<b>Welcome to the ... Forums</b><br /><br />We look forward to you <a rel=nofollow href="register.php$session[sessionurl_q]">registering</a> on the forum and being part of this great ....
</if>

<br /><br />
Sincerely,
<br /><br />
<i>name</i>
</div>
	</td>	
</tr>
</table>
<!-- / guest welcome message -->
</if></if><br />



An alternative - using the welcome headers plugin from vbulletin.org
http://www.vbulletin.org/forum/showthread.php?t=99579 - please click install on his page if you happen to download and install my version of it
- summary of all above navbar template changes.
- with the vbulletin plugin, I remove all the formatting

Code:
 <if condition="THIS_SCRIPT=='member'">
<div class="navbar2">
 The userprofile of $userinfo[username]. Domain.com - a community of ... discussing ... $welcomeheaders</div>
<else />
<if condition="THIS_SCRIPT=='index'">
<div class="navbar2">$welcomeheaders</div>
<else />

<if condition="THIS_SCRIPT=='poll'">
<div class="navbar2">The poll results for <b>$threadinfo[title]</b>. $welcomeheaders</div>
 
 <else />
 
 <if condition="$thread[title]">
<div class="navbar2"><b>$thread[title]</b><if condition="$pagenumber>1"> Page $pagenumber</if>. Discuss <i>$thread[title]</i>, on domain.com sales pitch. $foruminfo[title]. $welcomeheaders</div>
 
 <else />
 <if condition="$foruminfo[title]">
  <div class="navbar2">
$foruminfo[title] <if condition="$pagenumber>1">Page $pagenumber </if> on domain.com. $foruminfo[description] $welcomeheaders</div>
<else />
$welcomeheaders

 </if></if></if></if></if>




Add a "Register" link on the logon form (top right of page)

It is not always easy to find the register link - I like having a link as part of the logon script box.

after:

Code:
<input type="submit" class="button" value="$vbphrase[log_in]" tabindex="104" title="$vbphrase[enter_username_to_login_or_register]" accesskey="s" />


add

Code:
<if condition="$show['registerbutton']"><span class="smallfont">
<a href="register.php$session[sessionurl_q]" rel="nofollow">$vbphrase[register]</a></span></if>


[Source...http://forum.time2dine.co.nz/seo-vbu...5-a-2460.html]

Last edited by Brandon; 10-24-2006 at 02:33 PM.
Quote   |  



#2   09-23-2006, 03:45 AM
RedMatrix is a jewel in the rough Join Date: Sep 2006 Posts: 201 Location: Texas
Re: Navbar template changes


This is good stuff. However, I don't understand the 157 characters words stuff. I know you didn't write this, but could you explain it?
Quote   |  



#3   09-23-2006, 11:16 AM
Send a message via AIM to Brandon Send a message via MSN to Brandon Send a message via Yahoo to Brandon Brandon is a glorious beacon of lightBrandon is a glorious beacon of lightBrandon is a glorious beacon of lightBrandon is a glorious beacon of light Join Date: Jul 2006 Posts: 9,813 Location: Topeka, KS
Re: Navbar template changes


Quote:
Originally Posted by RedMatrix View Post
This is good stuff. However, I don't understand the 157 characters words stuff. I know you didn't write this, but could you explain it?
yup, basicly it means that you want your title and description to be under or around 157 characters.. This will give best results for google..

There is some more info about it in here Google Webmaster Central I can search around and find it, if needed.
--------------------
Brandon Sheley / vBulletin Setup Staff
Check out our Newsletter for the latest vB and SEO news.
Are you looking for vBulletin work to be done on your forums ?
Would you like to Help Support vBulletin Setup.

Please do not PM me for support, that's what the forums are for.
Have you heard about Crowdgather?
Find it on Forums


Stay up to date by installing our Tool Bar
Quote   |  



#4   11-06-2006, 07:13 PM
Send a message via MSN to big-ah Send a message via Yahoo to big-ah Send a message via Skype™ to big-ah big-ah will become famous soon enough Join Date: Nov 2006 Posts: 28 Location: Errachidia-Morocco
Re: Navbar template changes


i will back to do it! tnx
Quote   |  



#5   11-07-2006, 08:41 PM
abramelin will become famous soon enough Join Date: Sep 2006 Posts: 31
Re: Navbar template changes


are you giving this examples for non vbseo users? does vbseo have this kind of features and can you please provide example pictures for your tutorials. i want to see whats happening without trying to my site
Quote   |  



#6   11-07-2006, 08:46 PM
Send a message via AIM to Brandon Send a message via MSN to Brandon Send a message via Yahoo to Brandon Brandon is a glorious beacon of lightBrandon is a glorious beacon of lightBrandon is a glorious beacon of lightBrandon is a glorious beacon of light Join Date: Jul 2006 Posts: 9,813 Location: Topeka, KS
Re: Navbar template changes


I just happen to add a new tutorials hack to this site and I might have to make a tut's forum

I'll get back to you on this.. yes the vbseo way of doing things is much easier IMO
--------------------
Brandon Sheley / vBulletin Setup Staff
Check out our Newsletter for the latest vB and SEO news.
Are you looking for vBulletin work to be done on your forums ?
Would you like to Help Support vBulletin Setup.

Please do not PM me for support, that's what the forums are for.
Have you heard about Crowdgather?
Find it on Forums


Stay up to date by installing our Tool Bar
Quote   |  
Post New Thread  Reply
vBulletin Setup > vBulletinSetup Information > vBulletin SEO Tips and SEO Questions


Thread Tools
Display Modes

 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Need help with GAZ & Advanced Navbar Links HotRodGyrl vBulletin Questions 12 10-01-2007 08:29 PM
Setting up Navbar rotor vBulletin Questions 6 08-04-2007 03:45 AM
Blogging in the Navbar? MischievousSpirit Blogging Forum 5 07-20-2007 12:26 PM
Help with NavBar devil dawgg vBulletin Questions 5 03-12-2007 08:21 AM
Very Weird Navbar Problem soultrader vBulletin Questions 7 10-11-2006 09:59 PM


All times are GMT -6. The time now is 04:38 PM.

vBulletin Setup, vBulletin Setup Forums, vBulletin Services, vBulletin Blogs, vBulletin SEO, vBulletin Questions, vBulletin Skins, Styles, Templates
vBulletin Hacks / Modifications, vBulletin Monetization, Blogs, vBulletin Link Directory,Quality Link Directory