I Am Looking For A Solution

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • annerosinsmith
    Sergeant

    • Jan 2006
    • 20

    I Am Looking For A Solution

    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.
  • navaldesign
    General & Forum Moderator

    • Oct 2005
    • 12080

    #2
    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!

    Comment

    • annerosinsmith
      Sergeant

      • Jan 2006
      • 20

      #3
      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

      • Robert
        First Lieutenant

        • May 2005
        • 296

        #4
        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>
        if it doesn't work quite right, move the code to the "Start of Page" section in your "Page Html" dialog box.
        Last edited by Robert; 06-21-2007, 08:18 AM. Reason: addition
        Robert
        www.GraphXntrix.com
        Your Visual Revolution Solution

        Comment

        Working...
        X