Log in

View Full Version : google ad code


newguy
03-17-2008, 11:49 PM
I use two different mod's for side column's on my forum. I am not interested in them anymore. I want to put my google ad code in where it will show on the left of every page in my forum as if it were in a column. I have no idea what to edit and where. Any help is appreciated very much.

vb 3.6.8

newguy
03-19-2008, 12:31 AM
anyone?

valdet
03-19-2008, 12:49 AM
This might help you

https://vborg.vbsupport.ru/showthread.php?t=148902&highlight=column

Good luck.

newguy
03-19-2008, 12:51 AM
Thanks :) I will give it a try.

--------------- Added 1205919857 at 1205919857 ---------------

Actually I am wanting to ad there with out any column. The ad just by it self in the same place.

newguy
03-27-2008, 11:51 PM
bump... any help in this?

SEOvB
03-28-2008, 12:39 AM
You can easily make your own side column with CSS and 2 template edits. For anyone that can't get USC or others to work try this.

To your additional CSS of your style add:

#Content {
margin:0px 25px 25px 175px;
padding:5px;
}

#Menu {
position:absolute;
top:118px;
left:20px;
width:172px;
padding:10px;
background-color:#eee;
border:1px dashed #999;
line-height:17px;
voice-family: ""}"";
voice-family:inherit;
width:150px;
}


Then at the bottom of your navbar template put:

<div id="Content">


Then in your footer template after $ad_location[ad_footer_end] put:

</div>
<div id="Menu">
Side Column, Fill with whatever crap i want!!
</div>


You may need to alter some of the CSS to get everything to line up correctly, but thats as easy as changing numbers :)