scrollbars and images

liunx

Guest
I would like to embed an image into a web page, but place it in scrollbars. I also need to attach an image map (hence I cannot use <object> tag) and I would prefer to avoid the extra page loading required by frames. Is that possible? Thanks.<!--content-->I think that the only way you can place an image in scroll bars is have it in an iframe, but NS will not load it. or you can put it in a frame that is up top. I have seen a div tag used with text in it that had scroll bars, but not sure if images are to be used in it.<!--content-->As scoutt noted, you'll need to put the image in another element to do this, although it doesn't have to be an <iframe> - a <div> will do fine, setting its CSS width and height to less than the image dimensions, and its CSS overflow attribute to 'scroll'. The only way to do this cross-browser (NS4) is to put the image in a DHTML scroller widget like Brattli's at <!-- m --><a class="postlink" href="http://www.dhtmlcentral.com/script/script4.asp">http://www.dhtmlcentral.com/script/script4.asp</a><!-- m --><br />
<br />
Hope that helps.<!--content-->
 
Back
Top