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

  1. #1

    Default empty lines

    I cleaned up the code on one of the pages in my site (I will do the others but
    haven't done so yet) and sorted out some problems, but in doing so created a
    new problem: empty lines.

    My site is [url]www.eurohouseandhome.com[/url] and the only page I've "cleaned up" (the
    only page where this problem is occuring) is the About Us page. You'll see
    that there is an empty space that shouldn't be there at the top of the page and
    another just under the banner. Must be something I changed in the code, but I
    don't see what.

    fyi - underneath the banner I left a blank row in my table intentionally so I
    could add content in the future if needed - but this appears okay on the other
    pages. At the top of the page the space seems to be above the table
    (everything on the page is inside table cells) and not inside it.

    alittlehelp Guest

  2. Similar Questions and Discussions

    1. Vertical lines in AI graphics PDF as broken lines?
      I have an InDesign CS1 doc that has an Illustrator CS1 EPS file placed in it. The graphic is a barcode for a coupon. It is only many vertical lines,...
    2. Why does CT drop empty lines in tables
      One of the pages on my clients website doesn't publish properly. My client does the updates using CT3. The page update is a simple cut and paste...
    3. Acrobat 6 changes solid lines to dashed lines
      Is Adobe planning to provide a fix for the problem where solid lines will display as dashed lines when viewed in Acrobat 6? If yes, when? Thank...
    4. read lines of file without parsing the lines
      Hello! Currently i have a logfile which tracks a certain feature on my server. Every time the feature accurs my script appends a line in the...
    5. #25885 [Opn->Csd]: mail() causes apache2 to crash when message is empty, and headers is non-empty
      ID: 25885 Updated by: sniper@php.net Reported By: ben at krackeler dot com -Status: Open +Status: ...
  3. #2

    Default Re: empty lines

    Open the page and use COMMANDS | Apply Source Formatting. Did that help?

    --
    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
    ==================

    "alittlehelp" <webforumsuser@macromedia.com> wrote in message
    news:dge8t4$ggn$1@forums.macromedia.com...
    >I cleaned up the code on one of the pages in my site (I will do the others
    >but
    > haven't done so yet) and sorted out some problems, but in doing so created
    > a
    > new problem: empty lines.
    >
    > My site is [url]www.eurohouseandhome.com[/url] and the only page I've "cleaned up"
    > (the
    > only page where this problem is occuring) is the About Us page. You'll
    > see
    > that there is an empty space that shouldn't be there at the top of the
    > page and
    > another just under the banner. Must be something I changed in the code,
    > but I
    > don't see what.
    >
    > fyi - underneath the banner I left a blank row in my table intentionally
    > so I
    > could add content in the future if needed - but this appears okay on the
    > other
    > pages. At the top of the page the space seems to be above the table
    > (everything on the page is inside table cells) and not inside it.
    >

    Murray *TMM* Guest

  4. #3

    Default Re: empty lines

    I tried this but it didn't change anything
    alittlehelp Guest

  5. #4

    Default Re: empty lines

    the problem of the space below the banner persists, but I just solved the top space by setting a top margin of 0
    alittlehelp Guest

  6. #5

    Default Re: empty lines

    Sorry - you are talking about space in the rendered page.

    I'd say that is due to this row -

    <tr align="left" valign="middle">
    <td width="22%"><span class="style2"></span></td>
    <td width="72%"><span class="style2"></span></td>
    <td width="6%"><span class="style2"></span></td>
    </tr>

    in your table.

    --
    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
    ==================

    "alittlehelp" <webforumsuser@macromedia.com> wrote in message
    news:dgeds4$nno$1@forums.macromedia.com...
    > the problem of the space below the banner persists, but I just solved the
    > top space by setting a top margin of 0

    Murray *TMM* Guest

  7. #6

    Default Re: empty lines

    you're right - that's the row, but that row exists coded the same in all my
    pages, it just appears different on this page. maybe i have an extra space or
    something in my coding causing this? any ideas?

    alittlehelp Guest

  8. #7

    Default Re: empty lines

    I dunno - I'd have to look at the other pages.

    Anyhow, you can make that row 'disappear' by changing this -

    <tr align="left" valign="middle">

    to this -

    <tr valign="middle" style="font-size:10%;line-height:10%">

    --
    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
    ==================

    "alittlehelp" <webforumsuser@macromedia.com> wrote in message
    news:dgeqf4$e4a$1@forums.macromedia.com...
    > you're right - that's the row, but that row exists coded the same in all
    > my
    > pages, it just appears different on this page. maybe i have an extra
    > space or
    > something in my coding causing this? any ideas?
    >

    Murray *TMM* Guest

  9. #8

    Default Re: empty lines

    alright, I'll give that a try. thanks.
    alittlehelp 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