bordercolor and cells in dw8

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

  1. #1

    Default bordercolor and cells in dw8

    hi

    very very novice user here...

    i've been using dw4 for some years and dw8 for a few months. all going well
    until today...

    site is at [url]www.rivergate.org.uk[/url]

    i'm using cells with bordercolor. until today this seemed to work fine, now on
    changing layout around slightly it's developed these ugly grids of cells around
    the page. i also notice that i can't find the bordercolor properties in the
    design view; i see that i can type these in the code view.

    i recognise that perhaps NS doesn't support bordercolor, but all has worked
    fine for me on IE till today, using dw8 i've made a number of alterations over
    recent months without these grids of boxes appearing.

    i'm confused as to how i've broken the page

    please can someone help with some basic and non technical advice

    thank you

    andrew

    andywc Guest

  2. Similar Questions and Discussions

    1. CSS issue with TD cells
      Hello. I'm trying to generate a layout that's flexible and in a way kind of frames looking without using frames. The basic principle is very...
    2. merging cells
      I am editing our website which was built from an outside company. The pages were done in tables. I am making a new page by using an old one - - to...
    3. Cells[].Text or Cells[].Controls[0]
      Folks, The following code illustrates two methods of obtaining the contents of a DataGrid Item. The function has been bound to the ItemCommand of...
    4. can some one help me with my text in my cells
      unless you specify a width for the table/layer it will keep expanding (up to the available width) to accomodate the contents (divs automatically...
    5. Frames vs cells
      I am a newbie to DM. I usually design my sites in a frame format,however I'm wondering if thats not always the best way to go. I have a page...
  3. #2

    Default Re: bordercolor and cells in dw8

    hi again

    update

    i still don't know why it's started doing it or adding the border, but it
    seems to remove the border if i delete the " " that IT places in the cell.

    i've been able to move cells and frame in design view for some months without
    issue, why has this started to happen now...

    clearly something that i've done... but i'm lost as to what

    please can someone help, also about bordercolor

    andywc Guest

  4. #3

    Default Re: bordercolor and cells in dw8

    > i still don't know why it's started doing it or adding the border, but it
    > seems to remove the border if i delete the " " that IT places in the
    > cell.
    That's because a browser doesn't render background colors or borders on
    empty table cells. DW places   in all table cells when you first
    insert it to avoid exactly this problem. It also obligingly removes that
    non-breaking space as soon as you insert any content into the cell.
    > please can someone help, also about bordercolor
    bordercolor is invalid HTML. It is IE proprietary, and will not appear in
    any modern browser. If you need borders to be colored reliably, you will
    need to use CSS to accomplish that.
    > i've been able to move cells and frame in design view for some months
    > without
    > issue, why has this started to happen now...
    This is the purgatory that those who do not know HTML are condemned to. The
    candid answer is that using the design view to move things around is just
    not the right way to work with HTML and web pages. If you are serious about
    doing this, you should seriously begin learning at least the basic concepts
    of HTML and CSS.

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


    "andywc" <webforumsuser@macromedia.com> wrote in message
    news:eis6is$rc3$1@forums.macromedia.com...
    > hi again
    >
    > update
    >
    > i still don't know why it's started doing it or adding the border, but it
    > seems to remove the border if i delete the "&nbsp;" that IT places in the
    > cell.
    >
    > i've been able to move cells and frame in design view for some months
    > without
    > issue, why has this started to happen now...
    >
    > clearly something that i've done... but i'm lost as to what
    >
    > please can someone help, also about bordercolor
    >

    Murray *ACE* Guest

  5. #4

    Default Re: bordercolor and cells in dw8

    You can get rid of that border by changing this -

    <table width="100%" border="1" bordercolor="#999999" cellspacing="0">
    <!--DWLayoutTable-->

    to this -

    <table width="100%" border="0" bordercolor="#999999" cellspacing="0">
    <!--DWLayoutTable-->

    and by the way, you should add cellpadding="0" to the table tag so that you
    control that variable as well.

    One other comment - DW's Layout Mode will kill you. It creates VERY fragile
    and monolithic table structures that are filled with col- and rowspans,
    causing them to break at the slightest provocation. To read some about how
    this happens, go here -

    [url]http://apptools.com/rants/spans.php[/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
    ==================


    "andywc" <webforumsuser@macromedia.com> wrote in message
    news:eis3ra$mjl$1@forums.macromedia.com...
    > hi
    >
    > very very novice user here...
    >
    > i've been using dw4 for some years and dw8 for a few months. all going
    > well
    > until today...
    >
    > site is at [url]www.rivergate.org.uk[/url]
    >
    > i'm using cells with bordercolor. until today this seemed to work fine,
    > now on
    > changing layout around slightly it's developed these ugly grids of cells
    > around
    > the page. i also notice that i can't find the bordercolor properties in
    > the
    > design view; i see that i can type these in the code view.
    >
    > i recognise that perhaps NS doesn't support bordercolor, but all has
    > worked
    > fine for me on IE till today, using dw8 i've made a number of alterations
    > over
    > recent months without these grids of boxes appearing.
    >
    > i'm confused as to how i've broken the page
    >
    > please can someone help with some basic and non technical advice
    >
    > thank you
    >
    > andrew
    >

    Murray *ACE* Guest

  6. #5

    Default Re: bordercolor and cells in dw8

    hi

    thank you for your two replies

    so the summary is that DW doesn't make very good HTML which breaks easily and
    that I need to learn HTML and write it by hand.

    err...

    anyway, so why did i buy DW, or GO Live of Front Page etc...

    sigh!

    i want the outline around the major box, but not those intermediate boxes. in
    fact very similar to this page here... that we're reading and typing into
    now... just coincidence...

    it's bizzare that it's just started doing it despite all the changes i have
    made over the months, and that it only does it to the elements i change now;
    those i don't touch don't break...

    i see that in some "cells" DW hasn't inserted the &nbsp. but where i've moved
    a table/cell it's now decided to insert this.... is there any way of turning
    this off, so it doesn't try and insert the &nbsp; ie how it's been working
    quite fine for the last 6 months or so? clearly i've changed a setting
    somewhere??

    thank you

    andrew

    andywc Guest

  7. #6

    Default Re: bordercolor and cells in dw8

    > so the summary is that DW doesn't make very good HTML which breaks easily
    > and
    > that I need to learn HTML and write it by hand.
    No, the summary is that Layout mode, in DW, doesn't make very good HTML.
    > anyway, so why did i buy DW, or GO Live of Front Page etc...
    Because of the many other conveniences that they do exceptionally well -
    link management, site management, CSS management, server compatability,
    built-in behaviors, etc., etc., etc. Further, when you know which features
    to avoid using (Layout mode is at the top of the list, followed by pop-up
    menus, convert layers/tables, and a few others), you will usually produce
    valid and usable code out of the box.
    > it's bizzare that it's just started doing it despite all the changes i
    > have
    > made over the months, and that it only does it to the elements i change
    > now;
    > those i don't touch don't break...
    The reason is clear when you look at the code. It's the border attribute on
    the inner table. How this happened to arise in your workflow is a question
    I cannot answer.
    > i see that in some "cells" DW hasn't inserted the &nbsp. but where i've
    > moved
    > a table/cell it's now decided to insert this.... is there any way of
    > turning
    > this off, so it doesn't try and insert the &nbsp; ie how it's been working
    > quite fine for the last 6 months or so? clearly i've changed a setting
    > somewhere??
    I don't think so. DW will do this automatically, and it does it for the
    reasons I have described. It's not the source of your problems. Your
    comment that when you remove it, you don't see the borders is simply a
    description of a browser feature not to render background colors or borders
    on empty cells. It's not a solution to your problem.
    > clearly i've changed a setting
    > somewhere??
    There is no such setting.

    I know this is a harsh indictment of DW's Layout mode. But if you search
    this forum for those very terms, you will see hundreds if not thousands of
    instances of people who have been led astray by it. It's not my intention
    to be critical, and I really believe that to use DW effectively, you MUST
    learn some HTML and CSS.

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


    "andywc" <webforumsuser@macromedia.com> wrote in message
    news:eislgb$epm$1@forums.macromedia.com...
    > hi
    >
    > thank you for your two replies
    >
    > so the summary is that DW doesn't make very good HTML which breaks easily
    > and
    > that I need to learn HTML and write it by hand.
    >
    > err...
    >
    > anyway, so why did i buy DW, or GO Live of Front Page etc...
    >
    > sigh!
    >
    > i want the outline around the major box, but not those intermediate boxes.
    > in
    > fact very similar to this page here... that we're reading and typing into
    > now... just coincidence...
    >
    > it's bizzare that it's just started doing it despite all the changes i
    > have
    > made over the months, and that it only does it to the elements i change
    > now;
    > those i don't touch don't break...
    >
    > i see that in some "cells" DW hasn't inserted the &nbsp. but where i've
    > moved
    > a table/cell it's now decided to insert this.... is there any way of
    > turning
    > this off, so it doesn't try and insert the &nbsp; ie how it's been working
    > quite fine for the last 6 months or so? clearly i've changed a setting
    > somewhere??
    >
    > thank you
    >
    > andrew
    >

    Murray *ACE* Guest

  8. #7

    Default Re: bordercolor and cells in dw8

    Highlight all the cells in the same row before and after.
    Right click to get the Tables menu
    Delete row

    KenRogers2 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