F fuser00 Established Member ★ 15 ★ Impact 4 Oct 3, 2006 2K views 2 replies #1 Hi, ive just inserted the google adsense code on the front page but its not aligned. How can i do it? The banner is 468x60 at the bottom. The site is: www.faviconsr.us Thanks, fuser
Hi, ive just inserted the google adsense code on the front page but its not aligned. How can i do it? The banner is 468x60 at the bottom. The site is: www.faviconsr.us Thanks, fuser
Y yeppers VIP Member VIP ★ 20 ★ Impact 109 Oct 3, 2006 #2 You can do that using one of these ways: Code: <div align="center"> ADSENSECODE </div> OR Code: <center> ADSENSECODE </center> Doesn't really matter which :P Rhett.
You can do that using one of these ways: Code: <div align="center"> ADSENSECODE </div> OR Code: <center> ADSENSECODE </center> Doesn't really matter which :P Rhett.
netzilla VIP Member VIP ★ 20 ★ Impact 54 Oct 6, 2006 #3 It you really want to get picky use a little css in there. Change the top: and left: values until the desired location is reached. Code: <html> <head> <style> .adsense_code { position: absolute; top: 105px; left: 130px; } </style> </head> <body> <div class="adsense_code"> place adsense code here</div> </body> </html>
It you really want to get picky use a little css in there. Change the top: and left: values until the desired location is reached. Code: <html> <head> <style> .adsense_code { position: absolute; top: 105px; left: 130px; } </style> </head> <body> <div class="adsense_code"> place adsense code here</div> </body> </html>