Announcement

Collapse
No announcement yet.

Site Design Width?

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

    Site Design Width?

    Hi

    With V8 coming out soon (I hope) we have decided to redesign our entire site from scratch. Our current design was based around 800x600 screen sizes which I believe is no longer really used. I don't really want to make it 100% width as we use a widescreen monitors and it looks pants.

    Should 1024x768 be the lowest fit as we still get about 9% of visitors still using this size.
    Thanks

    JoBananas Body Jewellery - Body piercing jewellery, belly bars and ear stretching plugs

    #2
    Depending on who you talk to, around 5-10% of users still use 800x600 res, which in this day and age boggles me but there you are.

    If you really don't want to exclude anybody, and know or are willing to learn some CSS, you can specify a minimum page width of say 800px, and a maximum width of say 1200. That way your page will squeeze into small screens but won't expand too far on your widescreen monitors.

    I posted some code not long ago that shows how to do this for IE and Firefox (IE6 needs a bit of hacking to treat min/max width properly but IE7 will support it). Its the last section of code in this thread:

    http://community.actinic.com/showthread.php?t=21283
    www.gbradley.co.uk
    Web Development, Actinic Patches, Scripts & more

    Comment


      #3
      Thanks for that.

      I guess at the end of the day if we continue to design sites for 800x600 the need for these people to upgrade their monitor resolutions is removed.

      I think if we go for 1024 that gives us more than enough real estate as our product images are not that big.
      Thanks

      JoBananas Body Jewellery - Body piercing jewellery, belly bars and ear stretching plugs

      Comment


        #4
        Haven't we fixed the pointless access restrictions to certain parts of the forum, yet. I thought Chris was going to look at this months ago.

        Mike
        -----------------------------------------

        First Tackle - Fly Fishing and Game Angling

        -----------------------------------------

        Comment


          #5
          Sorry, I didn't remember that post was in the Developer's forum. Here it is again:

          Code:
          <html>
          <style>
          .myDiv {min-width:600px;max-width:900px}
          * html .myDiv {
          width: expression(document.body.clientWidth < 602? "600px" : document.body.clientWidth > 902? "900px" : "auto");
          }
          </style>
          <body>
          <div class="myDiv">
          blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah
          </div>
          </body>
          </html>
          In both IE 6 and FF 1.5 the min/max values work, haven't tested other browsers yet.

          Edit: This method fails if an IE user has javascript disabled. Not too much bother for an actinic site, however.
          www.gbradley.co.uk
          Web Development, Actinic Patches, Scripts & more

          Comment

          Working...
          X