Forum Moderators: not2easy
Thank you,
Larry
do you want to hide the regular scrollbar? If so you may need to hide it on both the <html> and <body> elements
e.g.
html, body {height: 100%; overflow: hidden;}
if that's not it and it's an internal scrolling div can you post an outline of the code, and describe which scrollbar you want to hide
Suzy
Here is the css for that div id:
#content_faq {visibility:hidden;position:absolute;height:400px;width:738px;background-image:url("../images/faq.gif");background-position:top right;background-repeat:no-repeat; }
#content_faq div.content_data { overflow:auto;position:absolute;height:400px;width:669px;padding:20px 30px 20px 40px; }
#content_faq h1 { font-size:12px;font-style:italic;color:#9DBEE3;margin-top:0px;margin-bottom:5px; }
#content_faq p { font-size:12px;font-style:italic;text-align:justify;color:#E1E7EE;margin-top:0px;margin-bottom:15px; }
body[id=my site] #content_faq div.content_data { overflow:auto;position:absolute;height:360px;width:669px;padding:20px 30px 20px 40px; }
body[id=my site] #content_faq div.content_data ul { padding-bottom:20px;
Thank you,
Larry