Hi From yesterday i am having problem regarding display of adsense ads. It changes from browser to browser..... It is ok when i use Google chrome and mozilla.. In the internet explorer and netscape the ads display one after other not beside... Once please check and give your valuable suggestions.... http://www.dragondukes.com/
NO problem. This is different matter, you don't think about this. Chrome is Google's browser. I don't know what happened yesterday but some time you will find Adsense disappear and next time you will find appear, it's not mean that your browser is not compatible.
Adsense ads changes their position or the ads inside the code changes from browser to browser. If the ads changes then its not a problem. It even change when the same page open in the two different locations. If the position of your ads changes in the different browsers you should check the stylesheet and try to solve the problem or contact professional web designer.
IE is a pain in the royal arse for web developers but thankfully MS realised how bad their own browser is and gave us IE Conditionals*. Using these and some CSS you can (I'm sure) get what you want to happen in all the browsers including IE. <!--[if lte IE 8]> <div style="float: left;"> <![endif]--> Your Google Adsense Code 1 <!--[if lte IE 8]> </div> <![endif]--> <!--[if lte IE 8]> <div style="float: left;"> <![endif]--> Your Google Adsense Code 2 <!--[if lte IE 8]> </div> <![endif]--> <!--[if lte IE 8]> <div style="float: left;"> <![endif]--> Your Google Adsense Code 3 <!--[if lte IE 8]> </div> <![endif]--> You could also create a css class if you don't want to use inline CSS. .ieadfloat { float: left; } Code (markup): Because the div's are nested within IE Conditionals the other good browsers ignore what's between them anyway. *Not able to post actual links yet so copy & paste this for more info >>> http://www.quirksmode.org/css/condcom.html Note: This should work in IE 7 and 8 on Win, not sure how it will respond to <=IE6 and IE on Mac.
Wow, OP, nice ad-dumping You might consider using a few less ads, or maybe placing them in different parts of the page rather than cramming them all in one place at the top. The location of your search button (in some browsers) could cause you some invalid clicks, too, so you might be careful.