What is consisdered a good overall page size for a Dreamweaver 8 web site?

With the new hi res and larger sized moniters should I start ctreating my web sites with a larger page size than 780 pxl x 496 pxl I've been using the last few years. I know it's a question with no right answers but hope there a rule of thumb to sizing that is more up to date for the newer broswer windows than I've been using. - Ned

It depends on how much content you need display per page and the viewport of your intended Target Audience.  Google knows what people use and they have a cool tool to demonstrate it below:
http://browsersize.googlelabs.com
Cowboy,
My only objection to Liquid layouts is that they can be resized to an uncomfortable viewing width on super wide displays.   IMO text that spans too many columns is difficult to read and 100% can get really ugly.
I prefer semi-liquid layouts.  Resizable, within limits.
#wrapper {
width: 80%;
min-width: 600px;
max-width: 1300px;
margin: 0 auto; /**centered**/
Or, if content is sparse, I build to approx. 970px fixed-width, centered.
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
www.alt-web.com/
www.twitter.com/altweb
www.alt-web.blogspot.com

Similar Messages

  • Set custom page size for printing

    I want to set a custom page size for printing some PDF three and four-page musical scores to roll paper on an Epson 1290 using Adobe Reader 9.3.4 on Ubuntu 10.04. The printer properties in the print dialog has a media size option, and one of the choices is "custom", but having chosen "custom", the dialog does not allow me to add the actual page size to the lpr printer command. I can see that when I choose "custom", the lpr command is
    lpr -P Stylus-Photo-1290 -o PageSize=Custom etc
    but what I need for a three page output, for example, is
    lpr -P Stylus-Photo-1290 -o PageSize=Custom.297x630mm etc
    and I can't see how to add the actual custom paper size. If I Ok the media size choice dialog with it just set to PageSize=Custom, I can see from the output preview in the print dialog that the actual page size that has been chosen is letter. The online Adobe doc for Reader 9 printing (http://help.adobe.com/en_US/Reader/9.0/content.html#heading2.3) says "For documents that are larger than the standard page size, go to File  > Page Setup.  Create a custom page size before you print your  document". The problem with that is that there is no "Page Setup" option on the File menu in the Unix version of Adobe Reader, only a "Print" option, which is where I already am.
    If I open the PDFs in Evince, it allows me to add the custom page sizes I want, but as Evince doesn't have the option to print multiple pages per sheet I can't use it either...

    Yes, it used to work, and the resize zoom bar used to work too (now its grayed out). I don't know if this is a "who's to blame for it" thing, but its not getting fixed and its pretty bad that no one seems to care enough even to respond. I found my own solution by opening it in Gimp. Just right click and select open with other ...Gimp and it will import into it. In the Gimp Print dialog, you have a scaling percentage in the "Page Setup" tab, and size settings in the "Image settings" plus loads of other stuff including multiple copies.

  • Suitable Page Size for Fixed Layout

    What could be a suitable Page Size for EPUB Fixed Layout? Is there a best practice? Should we take iBook Author's format which is 768 x 1004 pt? Has Google Play Books any suggestions (I didn't found any...).
    Any suggestions?
    Thanks
    Haeme Ulrich

    Not sure whether this link will be helpful or not!
    http://apex.infogridpacific.com/dcp/fxl-pagesize-tutorial.html
    Derek

  • Default page size for printing

    Is there a way to configure (i.e., specify non-programatically) the default page size to use when printing in Java? We have several JREs installed on a single Solaris machine. It seems that all but the one that came installed with the OS defaults to a an ISO-A4 page size.
    I wrote a test program (see end of post) and compiled using a 1.2.2 JDK. Here are some results:
    $ /usr/java/bin/java -cp . PrintPageFormat
    Java version: 1.2.2
    Page size: 612.0 x 792.0 pts
    $ /opt/java-packages/jre-1.4.0_04-solaris-i586/bin/java -cp . PrintPageFormat
    Java version: 1.4.0_04
    Page size: 595.0 x 842.0 pts
    $ /opt/java-packages/jre-1.4.2_08-solaris-i586/bin/java -cp . PrintPageFormat
    Java version: 1.4.2_08
    Page size: 595.0 x 842.0 pts
    $ /opt/jre-1.5.0_04-solaris-i586/bin/java -cp . PrintPageFormat
    Java version: 1.5.0_04
    Page size: 595.2755813598633 x 841.8897399902344 pts
    I've searched the Internet, but cannot find how to go about setting the default page size for a JRE. I've opened a ticket with Sun, and was told you can't do this other than programatically. It seems unreasonable that I would have to recompile my existing applications just to get them to work correctly under newer JREs. Is Sun's response to my ticket correct???
    Thanks in advance!
    Chris Rorvick
    [email protected]
    ============================================================
    import java.awt.print.*;
      public class PrintPageFormat
          public static void main(String[] args)
              PrinterJob pj = PrinterJob.getPrinterJob();
              PageFormat pf = pj.defaultPage();
              double w = pf.getWidth();
              double h = pf.getHeight();
              String version = System.getProperty("java.version");
              System.out.println("    Java version: " + version);
              System.out.println("    Page size: " + w + " x " + h + " pts");
      }

    This problem was fixed by setting the locale variable LC_CTYPE to "C" or "en_US". The JREs 1.4.0 and above deployed on our Linux and Solaris environments all have the system property 'java.awt.printerjob' set to 'sun.print.PSPrinterJob'. This is a subclass of sun.print.RasterPrinterJob which in turn is a subclass of java.awt.print.PrinterJob. So, PSPrinterJob is the actual class of the PrinterJob returned by PrinterJob.getPrinterJob(). Looking at the code of RasterPrinterJob:
            /* Default to A4 paper outside North America.
            String defaultCountry = Locale.getDefault().getCountry();
            if (!Locale.getDefault().equals(Locale.ENGLISH) && // ie "C"
                defaultCountry != null &&
                !defaultCountry.equals(Locale.US.getCountry()) &&
                !defaultCountry.equals(Locale.CANADA.getCountry())) {
                double mmPerInch = 25.4;
                w = Math.rint((210.0*ptsPerInch)/mmPerInch);
                h = Math.rint((297.0*ptsPerInch)/mmPerInch);
                newPaper.setSize(w, h);
                newPaper.setImageableArea(ptsPerInch, ptsPerInch,
                                          w - 2.0*ptsPerInch,
                                          h - 2.0*ptsPerInch);
            }This should have been fairly obvious. Java's locale settings depend on the platform's locale settings (i.e., LC_ variables in this case), and then the default page size is determined (or actually altered) based on that.
    I'm kicking myself for not figuring this out much sooner. I would hope Sun is, too! (not me, themselves)

  • How to increase page size for balance file upload in Workspace.

    Hi All,
    Please suggest how to increase page size for balance file upload in shared Workspace pages.
    Thanks,

    A word of caution is in order regarding changing from facing to non-facing and back again. If you have overridden master page items, you'll get a second, non-overridden copy on all the even-number pages when that half of the master page is re-applied. This applies to master text frames which override automatically when text flows into them as well as to objects you manually override. I think you'll find this particular technique also only works for master text frames, whereas the Layout Adjustment should work in all situations where frames snap to guides.

  • Set Paper Source by Page Size for multi files

    I have over 500 pdf files. How can I batch set "Paper Source by Page Size" in Print Dialog Preset for these files.
    Thanks!

    Hi Andrew,
    Apple made some pretty significant changes to the way that printers function when they released 10.6.
    The setting you're looking for is completely controlled by the OS.
    Choose Apple > System Preferences > Print & Fax.
    Click on your printer and use the drop-down menu to change the default page size for your printer.
    -David

  • Create coustom page size for Smartforms

    Dear All
    How to create coustom page size for smartforms.
    rgds
    pramod

    HI
    To define a new page format, choose
    Administration -> CCMS -> Print->® Spool Administration.
    Choose Full Administration and then Page Formats on the Device Types tab page. On the next screen choose Change and  Create or  Create with Reference. Fill out the fields on the next screen.
    Activating a New Page Format
    Before using a new page format, you must specify it as a page format in a SAPscript form. Be careful when replacing a page format in a standard SAPscript form as the form may not necessarily fit on the new page format.
    You also have to define a format and device type format for the new page format before you can use it.
    Thanks and Regards
    Santosh   Kate

  • PIXMA MG8220 default page size for printing is set incorrectly to 6x4, need Letter

    I have a PIXMA MG8220, and the default page size for printing is set incorrectly to 6x4, I need it to be Letter paper size. I'm wasting a lot of paper, and cannot figure how to reset the defaults on the printer vs. individual laptops using the printer?Simon

    Hi simonp, To set the paper size to be printed on, please follow these steps: 1.  Open an application such as TextEdit. 2.  Go up to File and select Print, or press the CMD+P keys on your keyboard. 3.  Locate the PAPER SIZE field, then select the LETTER paper size. 4.  Look for the drop-down menu labeled PRESETS, then expand this menu and choose SAVE AS.
    5.  Type in a name of your choice for this default setting, then click OK.
    You will now be able to select the above created preset from any application you print from, with the default paper size being Letter.  Hope this helps!

  • My reader will not open a PDF file that I have downloaded from a government web site (an application form) - it states that the file is not good.  I can open on the web site but not from my mac computer

    My reader will not open a PDF file that I have downloaded from a government web site (an application form) - it states that the file is not good.  I can open on the web site but not from my mac computer.

    Maybe this: http://helpx.adobe.com/acrobat/kb/pdf-error-1015-11001-update.html ?
    Do you have a link to that document?

  • What extension is needed to enable video from the Cleveland Browns web site?

    What extension is needed to enable video from the Cleveland Browns web site? Video and movies play everywhere on the iMac OS 10.9.2 and my Safari 7.0.2  browser except on Cleve.Browns site. I had it working earlier but after a crash I must have made some changes and video is no longer available on that site?

    Thank you for the suggestion but my Safari uses 12.0.077 Flash PLayer and the video on the Browns' site still does not respond. Works OK on FireFox but not at all on Safari.

  • Sometimes a web page appears with only text and no picures. It is not always the same site and does not always happen. If I switch to Explorer for the same web site it always works

    Sometimes a web page appears with only text and no picures. It is not always the same site and does not always happen. If I switch to Explorer for the same web site it always works

    Thank you, it worked with just F5. I don't know whether CTRL + F5 would work because the problem has not come back yet!

  • How to Setup Default Page Size for Multiple Printers

    I've got two printers, a laser printer for printing "normal" 8 1/2 x 11 pages and a Zebra label printer for printing 4x6 shipping labels. I have my laser printer set as the default printer with a default paper size of US letter. Whenever I go to print shipping labels on my Zebra printer, I switch the printer in the Print dialog box and it always defaults to a paper size of "Full Bleed 8 1/2 x 11". Is there any way to change this setting so that it defaults to "4x6"?
    Another interesting thing is that if I temporarily set the Zebra printer up to be the default printer, none of the paper sizes that are "appropriate" for this printer appear in the default paper size popup menu. It looks like the choices are only those that would make sense for my laser printer. But when I go to print with my label printer, I can choose all sorts of "appropriate" sizes from the dialog box, including the "4x6" size that I use.
    Any ideas?

    Stop the queue (or take the printer offline manually), queue a print job, and check the settings on the submitted job using the CUPS interface; see if you can get the print job "captured" in the queue, and then see if the job is asking for the page size.  Based on what you're describing, I'd guess that whatever application or tool you're printing from is specifically requesting the page size, and not defaulting it.

  • Change the Default Page Size for WebI

    Hello Experts,
    We have requriement where we need to change the default page size and margins for WebI, I have change the page size in defaultconfig.xml but don't see any options for Margins, How do I change the default margins?
    Any help or suggestion would be highlt appereciated.
    Thanks,
    Nishith

    From what I am finding it doesn't seem to be possible in 3.x, I could be wrong and someone might chime in with a workaround but at least it was added in 4.0
    -Dave

  • Page Size for Z2100 - Mac Software

    I print lots of long documents, all of which are 23" wide but of vaiable lengths. I used to use HP Instant Printing software on my PC, where I would simply add the file and my HP Designjet Z2100 would print it and then cut the roll before moving onto the next document.
    However, I recenly bought an iMac and found that the HP instant printing software isn't available. When using the standard printer driver, I need to enter a page size. As my pages aren't standard sizes, this is annoying. Is there any way to make the printer just print the document in the page size of the document (usually pdf's), cut the roll and move on?

    Ella:
    Welcome to the Apple Discussions. There's no way to create a 12x12 book from iPhoto.
    MyPublisher now has an offline application, BookMaker, to create books offline and then upload. However the only sizes available are 8.75 x 11.25 and 11.5 x 15.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Can no longer create custom page size for printing to PDF?

    When printing from FrameMaker to PDF in Windows, I used to be able to create a custom page size by clicking on the Add button that appeared to the right of the Adobe PDF Page Size window, in the Adobe PDF Document Properties dialog box. With Frame 9, that button no longer appears; in fact, the whole dialog box is cut off just inside the edge of the entry windows. Do I need to set something? Thanks for any help you can offer. - Cindy Shaler

    Cindy,
    I am not sure to what dialog boxes you are referring.
    In the PDF Setup dialog box (in FrameMaker's Print dialog or Save as PDF dialog), the Settings tab displays two fields to change the width and height of the paper. I tried entering odd values, and the resulting PDF had the entered size. I see no Add button nor is the dialog box cut off.
    Maybe I am not looking at the correct boxes.
    Van

Maybe you are looking for

  • How to send an email to the customer after generating Invoice in Receivable

    Hi, package oracle.apps.xdo.ebsdelivery; import oracle.apps.xdo.delivery.DeliveryManager; import oracle.apps.xdo.delivery.DeliveryRequest; import oracle.apps.xdo.delivery.DeliveryPropertyDefinitions; import java.sql.Connection; import java.sql.Driver

  • Nedd your help for aceesing database in minisap 4.6 d (please help)

    hi all sap masters please help me. i have installed the minisap 4.6d system in the windows 200 prof os. i had the following problem in my minisa access. while Displaying table contents with transactions SE11 or SE16 gives an error "No changes on SAP

  • Jsp and render as html a form field.

    I have a jsp with a form the fields of which are populated by some values. One field contains html code so the value is *<table><tr><td>...</td></tr></table>*. What I would like is that instead of having the text <table><tr><td>...</td></tr></table>

  • 8mm film

    I want to convert old 8mm film to digital, but not sure about converting to a high definition (HD) format or just standard digital format (SD).  My goal is to end have the best quality, but also to be able to play back on my computer, HDTV and use th

  • Slow Exporting AVCHD Footage as a Quicktime conversion

    I recorded some video on a Canon Vixia hf21 at 17 mps. After I edited on Final on final cut it was around 15 minutes long. When I went to export it as a quicktime conversion file so I can upload it on youtube, it said it would take 8 hours. I was won