Forum Moderators: open
I found a template (that I don't want to purchase ;-) showing an internal scrolling window:
(hope this is OK to demonstrate my question)
Here is the template:
http://www.templatemonster.com/show.php?templ=3100&type=1&order=date&search_words=liquor
&from_=any&to=any
Not only does this page have an internal scrolling window but it's stylized to match the design.
How do you think they did this?
What is the best approach for this feature?
I'm assuming there is more than one way and, of course, I want to be as browser-compatible as possible.
THANKS!
[edited by: DaveAtIFG at 5:45 am (utc) on Dec. 19, 2003]
[edit reason] DeLinked URL [/edit]
Do you or anyone else know of of a tutorial that you can point me to? I think you can do this with Javascript and/or DHTML (not sure exactly what that means) but I want to make sure I don't lock up anyone's browser, etc..
Thanks!
<html>
<head>
<title>Div Scrolling Example</title>
<style type="text/css">
.scrolling {
width:232px;
height:255px;
overflow: auto;
scrollbar-face-color: #009CFF;
scrollbar-highlight-color: #00CCFF;
scrollbar-3dlight-color: #0066FF;
scrollbar-darkshadow-color: #0000FF;
scrollbar-shadow-color: #0033FF;
scrollbar-arrow-color: #FFFF00;
scrollbar-track-color: #CCCCCC;
}
</style>
</head>
<body>
<div class="scrolling">
<p>This will scroll.</p><p>So will this.</p>
<p>See it's working!</p><p>Nice isn't it?</p>
<p>This will scroll.</p><p>This will scroll.</p>
<p>This will scroll.</p><p>This will scroll.</p>
<p>This will also scroll</p>
</div>
</body>
</html>
Just an idea ;)
Elijah
Calling an external html file with loads of css.
My first post here.
Webmasterworld here i am!