The "Freeola Customer Forum" forum, which includes Retro Game Reviews, has been archived and is now read-only. You cannot post here or create a new thread or review on this forum.
1) When someone enters my site, can I force the IE screen to maximise ? If so how do I do it.
2) How can I get the screen to stay at full size even if they reduce IE screen to say half width of the screen (like the SR pages) so it doesn't squash up ?
thanks
> I'll leave the JavaScript required to make the browser load the
> correct page dpending on the scree nresolution to someone else though,
> because it's a long script and I'm too annoyed with my PC at the
> minute.
Ah-ha! That sounds like a cue for me... But I'm lazy.
To make the page span the whole width of the screen, but not resize when the window is resized, you must use pixel measurements rather than percentages. Do this in each one of your pages which is designed for the specific screen resolutions.
- For 640x480, make tha page 600 pixels wide
- For 800x600, make the page 760 pixels wide
- For 1024x768, make the page 728 pixels wide
- For 1600x1200, make the page 1560 pixels wide
To make the window maximise when the page loads, use this tag. It will not work in a lot of browsers though:
I'll leave the JavaScript required to make the browser load the correct page dpending on the scree nresolution to someone else though, because it's a long script and I'm too annoyed with my PC at the minute.
If I understand right you want a page that fits 100% of someones screen when it's in a full size window (regardless of their resolution), but when they reduce the window size the tables won't compress?
If that's what you meant, I'm not sure you can do it...
> 1) When someone enters my site, can I force the IE screen to maximise
> ? If so how do I do it.
Don't do this. As the web developer, you have no right to start dictating how a persons browser should behave. Admittedly some sites do dirty tricks like this, but their creators will go to hell for their sins.
Make your page but for the widths of tables etc use percentages instead of pixel widths. This way, the table will be 100% of the browser. Very handy.
Don't know about the maximising thing though...
1) When someone enters my site, can I force the IE screen to maximise ? If so how do I do it.
2) How can I get the screen to stay at full size even if they reduce IE screen to say half width of the screen (like the SR pages) so it doesn't squash up ?
thanks