I cannot get a png file to align all the way to left ofthe browser

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default I cannot get a png file to align all the way to left ofthe browser

    So I have my navbar created in fireworks and it works fine, its just that I
    cannot get to line up on the left side of the browser...

    There is always just a little space there, and I have set the align property
    to left, and have even tried sticking the image into a paragraph and aligning
    that to the left, but alas no effort is rewarded.

    I have designed a jpg picture in photoshop to do the same thing and it goes to
    the left side of the screen, I would just rather do this with fireworks.

    Thanks

    Robsix6 Guest

  2. Similar Questions and Discussions

    1. How to set button text Align to left?
      How to set button.text Align to left?
    2. Everything appears on the left side of browser?
      Does anyone know how to center the contents of websites created in publisher instead of them showing up on the left side of brower. Thanks
    3. Can perltidy left-align side comments to a specific column?
      Dear Perl beginners and mentors thereto, I would like to use perltidy to left-align side comments in a Perl script to a specific column, if...
    4. Bottom Left Browser Mask
      Dear all, Where can i get the Scroller for the bottom left of the IE browser so I can hide the page names as they load. ta. Adam
    5. how to Align text left & vertical align middle
      Hello, I have a asp lable control, which I use to display text in, I would like to have the text display aligned in the center and vertical...
  3. #2

    Default Re: I cannot get a png file to align all the way to left of the browser

    > So I have my navbar created in fireworks and it works fine, its just that
    > I
    > cannot get to line up on the left side of the browser...
    The pop-up menus?

    For page alignment, try this -

    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: 0; margin-right: 0; margin-bottom: 0; margin-left: 0;
    padding:0; }
    -->
    </style>
    (when the value is zero, units are not required)

    you could also try

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

    or

    body { margin: 0; padding:0; }

    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 (only in DMX and below).

    Since you are still using inline margin specs in the body tag, this method
    won't validate (and is not easy to do in DMX2004). To get completely valid
    code that works for all
    browsers in any version of DW, change your stylesheet as shown below -

    body {
    padding: 0;
    margin: 0 -10px 0 -10px;
    /*/*/margin: 0 0 0 0; /* */
    }
    (this is called a CSS "hack" - the bottom line is not read by NN4x)

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

    "Robsix6" <webforumsuser@macromedia.com> wrote in message
    news:d8po6n$5vg$1@forums.macromedia.com...
    > So I have my navbar created in fireworks and it works fine, its just that
    > I
    > cannot get to line up on the left side of the browser...
    >
    > There is always just a little space there, and I have set the align
    > property
    > to left, and have even tried sticking the image into a paragraph and
    > aligning
    > that to the left, but alas no effort is rewarded.
    >
    > I have designed a jpg picture in photoshop to do the same thing and it
    > goes to
    > the left side of the screen, I would just rather do this with fireworks.
    >
    > Thanks
    >

    Murray *TMM* Guest

  4. #3

    Default Re: I cannot get a png file to align all the way to leftof the browser

    Hey thanks, that worked right away.

    I am having difficulty taking advantage of both CSS sheets and Templates... do
    you know where I can learn about them? I have viewed the on demand and the
    tutorials but still don't understand them in their entirity.

    again, thanks

    Robsix6 Guest

  5. #4

    Default Re: I cannot get a png file to align all the way to leftof the browser

    Hey thanks, that worked right away.

    I am having difficulty taking advantage of both CSS sheets and Templates... do
    you know where I can learn about them? I have viewed the on demand and the
    tutorials but still don't understand them in their entirity.

    again, thanks

    Robsix6 Guest

  6. #5

    Default Re: I cannot get a png file to align all the way to left of the browser

    There are some excellent CSS tutorials by Adrian Senior on the Macromedia
    Developer site (go to [url]http://www.macromedia.com[/url] and surf into the site from
    that point). There are also excellent tutorials about specific aspects of
    CSS on the PVII site ([url]http://www.projectseven.com/[/url]) and the CommunityMX site
    ([url]http://www.communitymx.com[/url]). There are comprehensive tutorials here -
    [url]http://www.w3schools.com[/url].

    For DW templates, there are not many resources, other than these forums (the
    DW one would be better for this). Post your question and see what
    happens....

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

    "Robsix6" <webforumsuser@macromedia.com> wrote in message
    news:d8pu4u$dlm$1@forums.macromedia.com...
    > Hey thanks, that worked right away.
    >
    > I am having difficulty taking advantage of both CSS sheets and
    > Templates... do
    > you know where I can learn about them? I have viewed the on demand and the
    > tutorials but still don't understand them in their entirity.
    >
    > again, thanks
    >

    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