I am facing an issue with a custom scrollbar appearing twice within an iframe. The scrollbar appears fine in IE but not in Chrome, Firefox, and Safari.
If you'd like to view the page, please visit:
Below is the code snippet within my iframe:
<style>
iframe {
overflow:hidden;
}
</style>
<iframe scrolling="no" width="690" height="680" frameborder="0"
src="templates/musicband/setlist.html"></iframe>
And here is the code in my HTML file:
<style type="text/css" id="page-css">
/* Styles specific to this particular page */
.scroll-pane
{
width: 690px;
height: 680px;
overflow: hidden;
}
</style>
I have experimented with different widths and heights, including using 100%. However, it resulted in a worse appearance.
You can see how the scrollbar should look (as shown in Internet Explorer) in this printscreen:
Please assist me in resolving this issue.
Thank you! - Swiz