I need some help with this. I placed an adsense code in the header of my website now I am stuck with a horizontal scroll bar - http://advertiseautos-tt.com.
I don't see a horizontal scroll bar I just see a banner that's not properly placed. Wow I've just went through the code and where do I start... this is completely messed up (HTML & CSS as well). You should add a div surrounding adsense code and position it properly with CSS. Just add it next to div#logo (after it's closure and before clear both). Then target div#adsense with float: right and maybe margin-top: 2px That should do it.
You probably find the issue within specific aspect ratios depending on the screen resolution or the screen size itself. You can try the following anyway body{overflow: hidden;} Code (markup): About other variations that you might need "hidden" Hides the overflowing completely and users won't have access to it "visible" The content flows outside the box. "auto" Will show scrollbars if and where needed, both horizontal or/and vertical "scroll" Will show both horizontal and vertical scrollbars. Hope it helps
Reduce the width of your website. Or, use this: <style type="text/css"> body { overflow-y:hidden; } </style> Code (markup): PS: Cena sucks.