Forum Moderators: open
Any help would be appreciated.
<script type="text/javascript"><!--
google_ad_client = "pub-#*$!xxxxxxxxxx";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_channel ="";
google_color_border = "FF6600";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_url = "008000";
google_color_text = "000000";
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=ProgId content=Publisher.Document>
<meta name=Generator content="Microsoft Publisher 10">
<link rel=File-List href=
[edited by: tedster at 10:41 pm (utc) on Mar. 17, 2005]
[edit reason] remove adsense id [/edit]
<DOCTYPE><HTML>
<HEAD>
</HEAD><BODY>
Visible page content
</BODY></HTML>
For your script to generate visible content, in need to be inserted in the <body> section - and not just anywhere in the body, but exactly in the section of the body that corresponds to the spot in the page where you want it to show up.
Right now your code is before even the <head> section, so the browser has no idea where to display it. I am guessing that your page is laid out with tables, and this probably means your script needs to be within a table cell (a <td> element) like this:
<td>script here</td>
You will need to decide where the exact spot for the AdSense is, and then find that spot in the code.