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

  1. #1

    Default <p> question

    Every time I use <p></p> to go to the next line it creates a big gap between
    the elements. I can get them to show together in dreamweaver if I remove it but
    then when I test in a browser it shows them all on the same line. Anyone know
    what's up?

    Moydock Guest

  2. Similar Questions and Discussions

    1. Newbie Question: Biz Card Template Question
      Hi, I got the Pagemaker PlugIn - I am using one of the templates for Business Cards - the elements appear to be grouped (bound box all around when I...
  3. #2

    Default Re: <p> question

    What you are seeing the normal, default margins (top and bottom) for the <p>
    tags. You can use CSS to change this easily -

    p { margin-top:2px; margin-bottom:2px; }

    It would be a good idea for you to read about CSS and how to use it to help
    your page layout techniques. You can start with these excellent tutorials -

    [url]http://www.projectseven.com/tutorials/css/qdmacfly/index.htm[/url]
    [url]http://www.macromedia.com/devnet/mx/dreamweaver/css.html[/url]
    [url]http://www.macromedia.com/devnet/dreamweaver/articles/tableless_layout_dw8.html[/url]
    [url]http://www.macromedia.com/devnet/dreamweaver/articles/css_concepts.html[/url]


    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (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
    ==================


    "Moydock" <webforumsuser@macromedia.com> wrote in message
    news:e73m24$kss$1@forums.macromedia.com...
    > Every time I use <p></p> to go to the next line it creates a big gap
    > between
    > the elements. I can get them to show together in dreamweaver if I remove
    > it but
    > then when I test in a browser it shows them all on the same line. Anyone
    > know
    > what's up?
    >

    Murray *ACE* Guest

  4. #3

    Default Re: <p> question

    Try using <b></b> (line break) instead of paragraph

    "Moydock" <webforumsuser@macromedia.com> wrote in message
    news:e73m24$kss$1@forums.macromedia.com...
    > Every time I use <p></p> to go to the next line it creates a big gap
    between
    > the elements. I can get them to show together in dreamweaver if I remove
    it but
    > then when I test in a browser it shows them all on the same line. Anyone
    know
    > what's up?
    >

    Judy Guest

  5. #4

    Default Re: <p> question

    <b> is bold. <br> is linebreak. Neither are optimal for this purpose 8).

    Using CSS to control the paragraph margins allows the text to continue to
    flow left to right, since it is still within a paragraph.

    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (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
    ==================


    "Judy" <someone@microsoft.com> wrote in message
    news:e75nt2$4fg$1@forums.macromedia.com...
    > Try using <b></b> (line break) instead of paragraph
    >
    > "Moydock" <webforumsuser@macromedia.com> wrote in message
    > news:e73m24$kss$1@forums.macromedia.com...
    >> Every time I use <p></p> to go to the next line it creates a big gap
    > between
    >> the elements. I can get them to show together in dreamweaver if I remove
    > it but
    >> then when I test in a browser it shows them all on the same line. Anyone
    > know
    >> what's up?
    >>
    >
    >

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