//flex table opened by JP

Click to See Complete Forum and Search --> : DreamWeaver Loser Please Help Me


frodo098
06-30-2002, 01:18 AM
Is anyone here famillar with this great app. Ive finally figured out how to do quite a bit of stuff without reading much of the docs but, I have one big problem. I can't really get the frames running.
When I added frames everything working just fine but, I don't see the little scrolling bars. So when I have a huge list of things
in the far left frame my visitors won't be able to scroll down the page to see everything. I know this all is a little vague but can you try to help me out?

bassman
07-09-2002, 11:26 PM
OK, I never used Dreamweaver but I can help you on the scrolling; edit your HTML like this:

<frame src="yourfile.htm" scrolling="yes" noresize marginheight="5">

what this line does is that scrolling will always be available (scrolling="yes"), the frame can't be resized (noresize) and the frame's margin height is 5 (marginheight="5").

Other options on the scrolling attribute: "yes" - scroll bar always appears; "no" - scroll never apeears; "auto" - scroll appears if needed (certain resolutions can display the full content of the frame, making the scroll bar useless)