Solid black border around table

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

  1. #1

    Default Solid black border around table

    How can I get a solid black border around a table in DW?

    bordercolor="#000000" leaves half black and half gray.

    TIA
    Mike Hugo


    FMikeHugo Guest

  2. Similar Questions and Discussions

    1. PDFs print solid black text at 92%K-HELP!
      I posted a message yesterday that went unanswered. I searched thru the forum for similar threads and saw a few who had similar problems. I've tried...
    2. Solid Black SWF Rather Than Flash On My Website
      I was having problems with Flash displaying on certain sites, so i installed Flash Player 9, and everything was good again. However, now when i...
    3. Blacks Not Distilling As Solid Black
      I'm trying to create a PDF of a Quark document, but no matter how I output it, the blacks come out as dark grey. I'm using Quark's default black, 0C...
    4. Solid black TIFF should overprint.
      I have a Solid 100% greyscale Tiff file with a path that is knocking out of my CMY plates. I want it to overprint but the only option in the...
    5. Images appear solid black when imported
      I am saving an eps file that looks fine when opened in Photoshop. However, when imported into Word (or any other application) the image is all black,...
  3. #2

    Default Re: Solid black border around table

    Don't use HTML styles for tables at all. Use CSS -

    <table style="border:1px solid black">

    This might be just what you are looking for.

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

    "FMikeHugo" <webforumsuser@macromedia.com> wrote in message
    news:dan9a0$65$1@forums.macromedia.com...
    > How can I get a solid black border around a table in DW?
    >
    > bordercolor="#000000" leaves half black and half gray.
    >
    > TIA
    > Mike Hugo
    >
    >

    Murray *TMM* Guest

  4. #3

    Default Re: Solid black border around table

    Murray-Thanks, but I use plain HTML. Will post on other board.

    FMikeHugo Guest

  5. #4

    Default Re: Solid black border around table

    With plain HTML (why?) you can create a single-cell table with cellpadding
    of one, cellspacing and border of zero. Give this table a black background
    color, and nest your content table within this cell. The cellpadding will
    give you the border around the outside. It's a ton of markup to achieve a
    simple effect, though.

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

    "FMikeHugo" <webforumsuser@macromedia.com> wrote in message
    news:dap39j$c0l$1@forums.macromedia.com...
    > Murray-Thanks, but I use plain HTML. Will post on other board.
    >

    Murray *TMM* Guest

  6. #5

    Default Re: Solid black border around table

    Murray - This doesn't work. Black BG of outer table covers text in inner table.

    FMikeHugo Guest

  7. #6

    Default Re: Solid black border around table

    You have to give the inner table a background color of <whatever> that will
    block the black from shining through.

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

    "FMikeHugo" <webforumsuser@macromedia.com> wrote in message
    news:das1tg$fbb$1@forums.macromedia.com...
    > Murray - This doesn't work. Black BG of outer table covers text in inner
    > table.
    >

    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