EvilArcana |
04-10-2012 12:15 PM |
I'm using doubleclick for publishers and have my ad header code in a different include...so something everyone might consider including would be:
Code:
{vb:raw headinclude_bottom}
right under the existing headinclude...
Also in order to address those that want spaces in the title...you don't have to use the vb page title variable...here's the code I'm using for information on advertising on my site.
Code:
{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml"<vb:if condition="$vboptions['enablefacebookconnect']"> xmlns:fb="http://www.facebook.com/2008/fbml"</vb:if> dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
<head>
{vb:raw headinclude}
<title>{vb:raw vboptions.bbtitle} - {vb:raw pagetitle}</title>
{vb:raw headinclude}
{vb:raw headinclude_bottom}
</head>
<body>
{vb:raw header}
{vb:raw navbar}
<div id="pagetitle">
<h1>{vb:raw pagetitle}</h1>
</div>
<h2 class="blockhead">Advertise With Us!</h2>
<div class="blockbody">
<div class="blockrow">
<div class="article cms_clear restore">
<p>Text and links and info about advertising with us goes here</p>
</div>
</div>
</div>
<br /><br />
{vb:raw footer}
</body>
</html>
You can replace both instances of {vb:raw pagetitle} with the version of your title that has spaces easily.
|