Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Small Screen - Width guides for web page designs' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Small Screen - Width guides for web page designs
Authored by: comodin on Sep 24, '04 11:53:10AM
i use bookmarks in the browser bookmarks-toolbar to do the same,
switching the size of the browserwindow.

the bookmark for 800x600px looks like this:

javascript:self.moveTo(0,0);self.resizeTo(800,600);
and the bookmark for 800x endless:

javascript:self.moveTo(0,0);self.resizeTo(800,screen.availHeight);
i have bookmarks for all resolutions i need, ...
and it is working on all browsers i check sites for free :)

greeting from berlin/ger -- andreas

[ Reply to This | # ]
Small Screen - Width guides for web page designs
Authored by: comodin on Sep 24, '04 12:03:44PM
btw .. u can place a link at ur develop-page too:

800x600
800x*
1024x768
1024x*

try clicking the URLs below and u will see how it works with ur site :)

[ Reply to This | # ]
Small Screen - Width guides for web page designs
Authored by: rkleim on Sep 27, '04 05:11:06PM

Or try this format for a browser link - just create a bookmark and alter the address to the following:
javascript:function%20rsz(s,i,w,h,m)%7Bif(i.screenX0%7C%7Ci.outerWidth%3Ew%7C%7Ci.outerHeight%3Eh)%7Bs.moveTo(0,0);s.resizeTo(w,h)%7D;if(m)%7Bs.moveTo(m==1?0:screen.availWidth-w,0);%7D;s.resizeTo(w,h);%7D;rsz(self,window,800,600,1);



[ Reply to This | # ]