So after reading 100's of posts and having one of my friends message me on Skype telling me that it doesn't work, I got to looking into this and discovered that a lot of people were having the same issues and for the people that mentioned about going to phpmyadmin, well for some people this is not even possible, so following the steps below will get Adsense on your website easy as pie.
To add Adsense to your domain, do the following:
A
Here we've the original code:
<script type="text/javascript"><!--
google_ad_client = "ca-pub-xxxxxxxxxxxx";
/* weare bottom */
google_ad_slot = "xxxxxxxxxxxx";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
B
For the ad to display correctly in dolphin and not strip out the code do as follows
1. On this line that says <script type="text/javascript"><!-- you need to remove the <!-- so its just <script type="text/javascript">
2. We then need to change the <script type="text/javascript"> to <script type="text/javascript">// <![CDATA[
3. Looking down the script we need to change the //--></script> <script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> to
// ]]></script><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>
C
The highlighted text // ]]> is what needs to be changed as we've done above, and thus adding this to our code makes the changes and displays the ad on the site. Tested with version 7.0.9
Once we've finished we're left with the following code which has been altered:
D
<script type="text/javascript">// <![CDATA[
google_ad_client = "ca-pub-xxxxxxxxxxxx";
/* weare bottom */
google_ad_slot = "xxxxxxxxxxxx";
google_ad_width = 336;
google_ad_height = 280;
// ]]></script>
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script>
E
You will notice on the original version we had <script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> well we needed to modify this to display the ad, clicking the ad also redirects to where it needs to go.
F
So what do we do here?
1. Open html block
2. Click the html option
3. Paste the new code
4. Click the update
5. Reclick the html option (This is where people make the mistake of just pressing save, this will strip out the code)
6. Click update
7. Click save
8. Enjoy the Ad.