Aloha all. I have a site that I would like it to automatically detect and adjust to the screen resolution of the visitor. Does anyone know how to do that? Thanks to all that answered my last post.
I Am Looking For A Solution
Collapse
X
-
Re: I Am Looking For A Solution
You can not do it with BV if that's what you are asking for. You CAN do it with Soholaunch. It takes using tables with the width defined as % of the screen width to accomplish what you want.
Please note, however, that when such a technique is used, you must be very carefull how you setup the various elements layout in the page, as, when tables resize, the relative position of the elements changes, and this could cause undesirable visual results.Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!
-
-
Re: I Am Looking For A Solution
Ok Thanks Alot - I appreciate this forum and the individuals like you that has helped me. My husband was in the Navy during Viet Nam. He passed away 2 yrs ago from a 100% service connected disability. I appreciate you guys and what you do for all of us. God Speed!
Comment
-
-
Re: I Am Looking For A Solution
BEST RESOLUTION -- Displays msg to user if viewing page in different resolution than intended for.
Simple, just change the values in red to what you want and that's it.
It's nothing fancy, but you can build on it.
Place the following code somewhere between the <head> </head> tags in your Page Html:
Code:<SCRIPT LANGUAGE="JavaScript1.2"> <!-- Original: Craig Lumley --> <!-- Web Site: [URL]http://www.craiglumley.co.uk[/URL] --> <!-- This script and many more are available free online at --> <!-- The JavaScript Source!! [URL]http://javascript.internet.com[/URL] --> <!-- Begin var bestwidth = [COLOR=red][B]1600[/B][/COLOR]; var bestheight = [B][COLOR=red]800[/COLOR][/B]; if (screen.width != bestwidth || screen.height != bestheight) { msg = "This site looks best when viewed when your screen " + "is set to a " + bestwidth + "x" + bestheight + " resolution, " + "but your screen resolution is " + screen.width + "x" + screen.height + ". Please change your screen resolution " + "to best view the site, if possible. Thanks!"; document.write(msg); } // End --> </script>
Comment
-
Comment