ad code problem vbulletin

ironcross77

New Member
Messages
456
Reaction score
0
Points
0
I add this adcode in vbulletin header. But nothing happens. Can anyone help

Code:
 <!-- Begin BidVertiser code -->
<SCRIPT LANGUAGE="JavaScript1.1" SRC="http://bdv.bidvertiser.com/BidVertiser.dbm?pid=29401&bid=70340"></SCRIPT>
<noscript><a href="http://www.bidvertiser.com">make money online</a></noscript>
<!-- End BidVertiser code -->
 

James

Banned
Messages
1,062
Reaction score
0
Points
0
it may be that u are putting it in worng location, iv done this a million times, i can help you out, just pm url, and temp admin details and ill do it in 30 seconds.

thanks
 

jensen

Active Member
Messages
1,167
Reaction score
22
Points
38
Ok here's the details....

1) First goto your admincp and look at the menu on your left.
2) Click on "styles and templates" and then click on "style manager"
3) Go to the sytle you want to edit and then on the drop down list select "edit templates"
4) You will get a long list of words. Look for "header" and double click on it
5) you will see < ! -- logo -- etc... bla bla bla. Go down and you will see < table >

Code:
<table> <tr><td> some code that puts the logo in the header </td></td></table>

So the key is to add a < td > x10adcode< / tr > to the code above so it looks like

Code:
<table> 
<tr>
<td> some code that puts the logo in the header </td>
<td> x10 adcode </td>
</td>
</table>

THis would make the ad appear to the right of your board logo like this
http://demo.vbulletin.com/index.php?styleid=2

Note: the above would only work 24 hours from the time of this posting because it is a demo board courtesy of vbulletin

Still have problems then let me or james go in and fix it for you.
Ohya, don't forget to save after you finish your work
 
Last edited:
Top