Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using this code

            <iframe frameborder="0" style="height: 185px; overflow:scroll; width: 100%" src="http://www.cbox.ws/box/?boxid=439&boxtag=7868&sec=main" marginheight="1" marginwidth="1" name="cboxmain" id="cboxmain" seamless="seamless" scrolling="no" frameborder="0" allowtransparency="true"></iframe>

This is how it appears (the shoutbox on homepage of www.talkjesus.com)

How do I remove the horizontal scrollbar and modify the css of the vertical scrollbar?

Thank you.

share|improve this question

migrated from webmasters.stackexchange.com Apr 10 '12 at 1:53

1 Answer

up vote 3 down vote accepted

in your css:

iframe{
    overflow:hidden;
}
share|improve this answer
2  
Thanks, but horizontal scroll only and still shows up in Firefox. Doesn't show up in Chrome nor IE. Also, CSS for scrollbar gets applied effectively only in IE, not FF nor Chrome (latter show default looking beige color/shades). – Faith In Unseen Things Apr 10 '12 at 19:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.