Ask a Question related to Macromedia Fireworks, Design and Development.

  1. #1

    Default Canvas Border

    Hi there

    I have just completed a page in Fireworks and exported as HTML. When i preview the page in Fireworks (F12) it seems to view fine but when i open the HTML file from a browser it does not fully adjust to the width of the screen i.e. there is white space on the left and top of the screen - how do i get rid of this so that the page adjusts to the full size of the screen??

    Binci.



    Binci webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Canvas and Panels
      This code is working but still have one small problem and i would be happy if i get help with that. when i change the tab nav (click on a Canvas) i...
    2. createMenu() on a Canvas
      Hi All, I'm looking for how to create a Menu on a Canvas, but Application. I wrote following codes, as you can see, I'm aiming to create...
    3. rotating the canvas
      Hi I can't find an answer for this - is it possible to flip/rotate the orientation of the whole canvas. Cheers LAtchet
    4. Canvas Equivalents?
      "Bill Schuhle" <bschuhle1@aol.com> wrote in message news:c4d6m8$f5k$1@forums.macromedia.com... I've been issuing the same gripes for years. ...
    5. umm how do you fix the zoom on canvas?!?!
      I have never been able to figure out how to set the size % of my canvas. On the bottom its says 100% then 66% what if I want 80% ?? Is there a...
  3. #2

    Default Re: Canvas Border

    Hello,

    If you are using Dreamweaver as your HTML editor, all you need do is choose
    Modify > Page Properties, and type 0's into each of the margin setting
    boxes.

    or the workaround of Murray...

    Link to an external stylesheet (using DW's CSS editor), or embed a
    stylesheet in your code (between <head> and </head>) with the following
    style in it (embedded shown for cut-n-paste convenience) (assuming you want
    zero margins) -

    <style type="text/css">
    <!--
    body { margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left:
    0px; padding:0px; }
    -->
    </style>

    you could also try

    body { margin : 0px 0px 0px 0px; padding:0px; }

    or

    body { margin : 0px; padding:0px; }

    as a shorthand method.

    This will take care of the margins in IE4+ and NN6. To take care of NN4x,
    you will need to use MODIFY | Page Properties... and set the two right hand
    margin fields (marginwidth and marginheight) to 0.

    Since you are still using inline margin specs in the body tag, this method
    won't validate either. To get completely valid code that works for all
    browsers, change you stylesheet as shown below -

    body {
    padding: 0;
    margin: -10px 0 0 -10px;
    /*/*/margin: 0 0 0 0; /* */
    }

    I hope this helps.

    Anthony F. Dugenia
    Technical Support Specialist
    Macromedia Technical Support
    To search for TechNotes and other issues use;
    [url]http://www.macromedia.com/support/search/[/url]



    "Binci" <webforumsuser@macromedia.com> wrote in message
    news:bk50dt$rae$1@forums.macromedia.com...
    > Hi there
    >
    > I have just completed a page in Fireworks and exported as HTML. When i
    preview the page in Fireworks (F12) it seems to view fine but when i open
    the HTML file from a browser it does not fully adjust to the width of the
    screen i.e. there is white space on the left and top of the screen - how do
    i get rid of this so that the page adjusts to the full size of the screen??
    >
    > Binci.
    >
    >


    Anthony MMTS Guest

  4. #3

    Default Re: Canvas Border

    You can fix it in Dreamweaver. Modify Page Properties. Set to 0.

    Quote Originally Posted by Binci webforumsuser@macromedia.com View Post
    Hi there

    I have just completed a page in Fireworks and exported as HTML. When i preview the page in Fireworks (F12) it seems to view fine but when i open the HTML file from a browser it does not fully adjust to the width of the screen i.e. there is white space on the left and top of the screen - how do i get rid of this so that the page adjusts to the full size of the screen??

    Binci.
    Unregistered Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139