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

  1. #1

    Default Margin errors

    Hi.

    I'm working on a site and keep getting Margin width and height errors.
    I'm testing the pages and they appear to be ok i n IE5-6 but in Netscape
    the margins seem to disappear.

    Any incite at all would be great!
    Thanks for your time!

    [url]http://www.abrilliantbasket.com/temp/[/url]

    kashi*


    Kashi* webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Unwanted margin-top and margin-bottom styles
      Editing a template-based page in Contribute CS3, there is no List Properties option (Help file says "Note: This option is not available for...
    2. Negative margin
      Hello, I just tested a new layout (css and html validated of course), that use negative margin. No editing possible in Contribute. Has the...
    3. pdf margin limit?
      I have been able to produce pdf versions(Acrobat 4.0) of documents that I have created in FrameMaker 6(OS9-G4) and am pleased with the results. And I...
    4. How to eliminate margin
      On a page I have a table with a single <tr> & <td> containing a flash movie and some graphics. With the flash file, there is a 3-4 pixel white space...
    5. Bottom margin help?
      No matter what I seem to do I cant get rid of a margin on the bottom of the page. It is only a few pixels, but I need to get rid of it. Any...
  3. #2

    Default Re: Margin errors

    Kashi:

    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.

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver MX
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]news://forums.macromedia.com/macromedia.dreamweaver[/url] - THE BEST WAY TO GET
    ANSWERS
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.DreamweaverFAQ.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "Kashi*" <webforumsuser@macromedia.com> wrote in message
    news:beugc3$cse$1@forums.macromedia.com...
    > Hi.
    >
    > I'm working on a site and keep getting Margin width and height errors.
    > I'm testing the pages and they appear to be ok i n IE5-6 but in Netscape
    > the margins seem to disappear.
    >
    > Any incite at all would be great!
    > Thanks for your time!
    >
    > [url]http://www.abrilliantbasket.com/temp/[/url]
    >
    > kashi*
    >
    >

    Murray *TMM* 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