here is my problem. I have html page with flash content set to 100% x 100%. I would like to somehow add scrollbars to window if it is resized below 700px x 700px (or opened in window smaller that that value)

this is website I'm working on:

http://www.peternelgrupa.com/

so the ting I want to accomplish is if someone with small resolution monitor opens it, window should get scrollbars so you can see all content. Now it just cuts it of and you don't have a way to see the rest of website.

Whatever the container is in (div, table, etc.) use CSS and set overflow: scroll; For example

<div style="overflow:scroll">This will have a scrollbar</div>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.