Link to home
Start Free TrialLog in
Avatar of IanTh
IanThFlag for United Kingdom of Great Britain and Northern Ireland

asked on

resize background depending on resolution

I am trying to write a web page and the client wants a resizable background so it looks the same at any resolution by dymically resizing to match ther browser is that posible and I want the main ie center to float over the top

I am using dreamweaver cs4 but my flash is very basic and I think it needs to be done in action script
Avatar of Glenn Abelson
Glenn Abelson
Flag of United States of America image

Take a look at this http://groups.google.com/group/macromedia.dreamweaver/browse_thread/thread/b35c438cf323caa4

However, if you want you can size everything to 100 % .
Avatar of IanTh

ASKER

sorry its a bit too complex I am a noob u see I know how to do <div> and css but new to javascript and I think its a javascript thing really  
In Dreamweaver, do you create a Table or DIV?
When you create either, you can give it a size like 300 px or 900 px.
You can also give it a size like 100% (change the px to %).
So, if you have a Table sized at 700 px wide and change it to 90% wide, it will take up 90% of whatever screen it is on.
Avatar of IanTh

ASKER

div's usually why? I thought you only use tables for database stuff these days
You are correct about divs.  Tables are old. Still widely used, however.
Same approach, you can create a wrapper div (one that goes around all the others) and size that by % of screen size.  If you have smaller ones too, however, they should also be resized by %.
Avatar of IanTh

ASKER

so if i do a div for the whole background and then in css say#background{ width: 100%;} for the  background div would that work if i put a gif image in the background div and also set that to 100% would that work
ASKER CERTIFIED SOLUTION
Avatar of Glenn Abelson
Glenn Abelson
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Try it and see how it looks