Currently I am using object to embed a adsense ad in a webpage
<object data="frontpage_blogrool_center_top_728x90" type="text/html" width="732" height="95" ></object>
I made the object larger than the original so that the scrollbar will not appear on the webpage but it still appears in IE8. Is there anyway to remove it?
You must add to the parent of the <object />
element's css, overflow: hidden;
Example:
<body style="overflow:hidden;">
<object ...>
</object>
</body>
Add style="overflow:hidden; width: 732px; height: 95px"
to the element:
<object data="frontpage_blogrool_center_top_728x90"
type="text/html" width="732" height="95"
style="overflow:hidden; width: 732px; height: 95px"></object>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With