javascript is fun. but please dont put fancy things in a page. :( something like fancy pointers, star background etc.
Printable View
javascript is fun. but please dont put fancy things in a page. :( something like fancy pointers, star background etc.
Thank you for all your Replies -i have some mega homework to catch up on
I need to have ScrollBars for this piece - alot of them - therefore im using the Frames and want the images to run individually.
I tried the Layer technique before but came up with the same problem - guess illl have to try again.
Yes im a html Newb - this the begining - let me try everything you guys said - until i get it right - give me a day or two to test
Thanx again to all
Hmm, well when i do layers i dont use code that often. Dreamweaver is predominantly Visual-based, and so it makes it easy to place things with layers.
scrollbars can be achieved via css simply by defining a <div>'s dimensions at a smaller size than the objects it will contain.
You then place the following property on that div (I'm going to give it an ID for this example)
HTML Code:<html>
<head>
<title>scrollbars</title>
<style type="text/css">
#image1 {
width: 800px;
height: 600px;
}
#container {
width:320px;
height:240px;
overflow:scroll;
}
</style>
</head>
<body>
<div id="container">
<img id="image1" src="whatever.jpg" />
</div>
</body>
</html>