areyouin2012
12-02-2003, 11:32 PM
ok...
i have a css style-sheet on my webpage. i want to know if i can have the right side of the sheet have a scrollbar, and be able to scroll down...but have the left side stay in place and not scroll with the right side...
did that make sense? here's the style sheet, if you need a visual:
clickey (http://www.geocities.com/scbi3/home.html)
so what i want to know is if the left part with the tree can stay still while the right side with text can be scrolled. if this is already somewhere on the site, i must have read over it...please let me know.
i appreciate all help!
~karen
hockyfan641
12-02-2003, 11:35 PM
You want the actual style sheet to scroll? That doesn't make since.
areyouin2012
12-02-2003, 11:47 PM
ok, i'm not sure if i explained that good enough...i'm not good with explanations...
the left side of the style sheet...with the tree...i want that to stay in place. the right side, with the black background and the white text i want to be able to scroll down when needed, but have the left side with the tree stay in place.
i know it's kind of confusing...
~karen
hockyfan641
12-02-2003, 11:49 PM
Ohh...thats not your style sheet. That's your website. A style sheet has css in it.
areyouin2012
12-02-2003, 11:50 PM
ah ok, i see. thanks. do you know what i'm talking about, though? do you know how to do that?
hockyfan641
12-02-2003, 11:57 PM
it looks like you're using frames. I'm not too familiar with frames...but yes, I think I know what you're talking about.
areyouin2012
12-02-2003, 11:59 PM
ok, in that link i posted earlier, i do have frames in it, but only because i changed it after i tried the style sheet thing.
so forgetting about the frames...
do you know how to do that with the scrolling?
hockyfan641
12-03-2003, 12:06 AM
if you add enough content it should scroll automatically i assume.
areyouin2012
12-03-2003, 12:07 AM
right, but when i scroll the right side, the left side scrolls with it. i want to make the left side stay still while the right side scrolls. is that possible?
hockyfan641
12-03-2003, 12:25 AM
Yes, but you'll need somebody else to help you with this. I dont use frames so I'm not familiar with thim.
areyouin2012
12-03-2003, 12:26 AM
ok, thanks for your help!
Rosey
12-03-2003, 12:47 AM
First in your source for your frame, you need to get your tags straightened out in there.
<html>
<head>
<style type="text/css">
</style>
</head>
<body>
<div>
</div>
<div>
</div>
</body>
</html>
If you are using divs, on that second div put a height on it, maybe 300px or so and put the scrolling in there:
<div id="content" style="height:300px; scrolling:auto;">
I hope that works.