WoodiE55
06-28-2006, 04:30 PM
I was looking around vbulletin-faq and reading different articles and such when I cam to the front page and noticed how it was coded. One thing that stuck out was the side bar with all the links which is coded used P, IMG, A HREF, and BR tags. In the readings I've done online and in books this is a messy way of coding and not nearly as SEO friendly either considerings none of the images use ALT tags and none of the links use TITLE tags. So I just took about 3mins to create an example sidebar using the same links but making it more SEO friendly and making it cleaner code.
PLACE IN YOUR CSS SHEET:
#secondarynav p {
padding: 12px 3px 2px 3px;
margin: 0;
}
#secondarynav ul {
margin: 0;
padding: 0;
list-style: none;
}
#secondarynav li {
background: url('images/navbits_finallink.gif') no-repeat left;
padding-left: 11px;
}
PLACE WHERE YOU WANT THE SIDEBAR:
<div id="secondarynav">
<p><strong>vBulletin FAQ Navigation</strong></p>
<ul>
<li><a href="http://www.vbulletin-faq.com/forum/" title="Our vBulletin Forum">Our vBulletin Forum</a></li>
<li><a href="http://www.vbulletin-faq.com/forum/search.php?do=getdaily" title="Today's Posts">Today's Posts</a></li>
<li><a href="http://www.vbulletin-faq.com/forum/news.php" title="vBulletin News">vBulletin News</a></li>
<li><a href="http://www.vbulletin-faq.com/reviews/" title="vBulletin Services Directory">vBulletin Services Directory </a></li>
</ul>
<p>Getting Started</p>
<ul>
<li><a href="http://www.vbulletin-faq.com/vbulletin-basics.htm" title="vBulletin Basics">vBulletin Basics</a></li>
<li><a href="http://www.vbulletin-faq.com/domain-name.htm" title="Domain Names">Domain Names</a></li>
</ul>
</div>
Granted this could still be improved by applying more CSS to the font size and type and so on, but at least this allows you to get the picture and see the end result.
Any ways just my two cents, thought someone here at vBulletin-FAQ might consider it.
-Michael
PLACE IN YOUR CSS SHEET:
#secondarynav p {
padding: 12px 3px 2px 3px;
margin: 0;
}
#secondarynav ul {
margin: 0;
padding: 0;
list-style: none;
}
#secondarynav li {
background: url('images/navbits_finallink.gif') no-repeat left;
padding-left: 11px;
}
PLACE WHERE YOU WANT THE SIDEBAR:
<div id="secondarynav">
<p><strong>vBulletin FAQ Navigation</strong></p>
<ul>
<li><a href="http://www.vbulletin-faq.com/forum/" title="Our vBulletin Forum">Our vBulletin Forum</a></li>
<li><a href="http://www.vbulletin-faq.com/forum/search.php?do=getdaily" title="Today's Posts">Today's Posts</a></li>
<li><a href="http://www.vbulletin-faq.com/forum/news.php" title="vBulletin News">vBulletin News</a></li>
<li><a href="http://www.vbulletin-faq.com/reviews/" title="vBulletin Services Directory">vBulletin Services Directory </a></li>
</ul>
<p>Getting Started</p>
<ul>
<li><a href="http://www.vbulletin-faq.com/vbulletin-basics.htm" title="vBulletin Basics">vBulletin Basics</a></li>
<li><a href="http://www.vbulletin-faq.com/domain-name.htm" title="Domain Names">Domain Names</a></li>
</ul>
</div>
Granted this could still be improved by applying more CSS to the font size and type and so on, but at least this allows you to get the picture and see the end result.
Any ways just my two cents, thought someone here at vBulletin-FAQ might consider it.
-Michael