Hey im struggling a fair bit here guys, ive looked but cant find what file or even div to edit to get my adsense opposite the logo. http://www.vegankingdom.co.uk/recipes/ any help is appreciated.
I think you need to place ad something like this http://www.gamehouse.com/online-games You can do this by using so many ways... I saw that you are using logo into #header DIV (your logo is too wide & ad block may go into next line) Align you #Header DIV tag to left by adding this to DIV in css display:block; float:left; Then create a new DIV for Ad & also align it to left by using #adDiv { display:block; width:486px; /*the width of your ad block, it should not exceed than your page width */ height:90px; /*the height of your ad block*/ float:left; margin-left:5px; /*margin between your logo & ad*/ } In HTML immediately after this coding: <div id="header"> <img title="Vegan Kingdom Recipes: Delicious FREE recipes for your enjoyment! - Powered by Maian Recipe v2.0" alt="Vegan Kingdom Recipes: Delicious FREE recipes for your enjoyment! - Powered by Maian Recipe v2.0" src="templates/images/header.gif"/> </div> HTML: Place this code: <div id="adDiv"> Your ad sense code will go here </div> HTML: In this way you can place ad in your header. Thanks, Jimmy
will give it a shot thanks man. the code isnt a problem i have mass problem finding where to put it and altering the css. i hate touching code thats already done.