Ask a Question related to Macromedia Dreamweaver, Design and Development.

  1. #1

    Default Re: cell borders

    see this: [url]www.dimadesign.net/stuff/links.html#borders[/url]

    --
    --
    DiMa
    --------------------
    WEB FORUM USERS: Please log on to the Newsgroup for quicker replies to your
    posts:
    [url]news://forums.macromedia.com/macromedia.dreamweaver[/url]
    For Answers, check here first:
    [url]http://groups.google.com/advanced_group_search?q=+group:macromedia.dreamwea ver[/url]
    [url]http://www.macromedia.com/support/dreamweaver/technotes.html[/url]
    [url]http://www.projectseven.com/faqbase[/url]
    [url]http://www.dreamweaverFAQ.com[/url]

    [url]http://www.macromedia.com/support/forums/etiquette.htm[/url]
    DiMa Design > From Lines...to Designs
    [url]http://www.dimadesign.net[/url]


    "Daniel Park" <dpark@lapazpih.org> wrote in message
    news:beqjhd$5uh$1@forums.macromedia.com...
    > In Frontpage there is a feature that lets you draw put a border
    > independently on any side of any cell. Is this feature available on DW MX?
    > What do I do if I want to draw a line on the top of a cell. Do in need to
    > just insert a picture?
    >
    > Dan
    >
    >

    DiMa Guest

  2. Similar Questions and Discussions

    1. cfgrid - Update a cell based on the value of another cell
      I would like to update a hidden cell based on the value of a visible cell. Is this possible? Thanks
    2. How to set cell background based on cell value when datagrid is displayed
      I would like to check a datagrid cell value, and change the color of the cell background, when a datagrid is displayed. I want to do this as early...
    3. I need to have a tooltip appear over a cell showing data from another cell in the same row.
      I have a datagrid with locations from around the world. In hidden cells, I have the Lat and Long of that location. I need to be able to mouseover...
    4. RadioButtonList In A DataGrid Cell - Can I find the selected button without editing the cell?
      I have an ASP.NET form with a DataGrid and Button. I want to put a RadioButtonList in a DataGrid cell. I bind it to an ArrayList which has a...
    5. borders on just one side of a cell?
      I've heard you can create borders that run along just one side of a table cell/row etc. you can also make them dotted so you can create dotted rules...
  3. #2

    Default Re: Cell borders

    "BwanaP" <sedorype@state.gov> wrote in message
    news:bfo30s$1vk$1@forums.macromedia.com...
    > There must be a way to assign a border only to one of the four edges of a
    > cell, but I can't see how. The cell properties only shows border color. Is
    > there another way to put a line between cells?
    >
    > When I create a table and set the border to 0, there is no visual aid to
    see
    > the cell - can this be added? When I view a page created in FrontPage I
    can
    > still see the dotted gridlines used for this.
    For this your are best (IMHO) to use a style sheet, then in the CSS panel of
    DW select the element you are applying to the cell. Open this to reveal the
    'CSS Style Definition for .whatever'. From the border section here you can
    control each individual side of the cell.

    Hope that helps :)

    PB


    Paul Brown Guest

  4. #3

    Default Re: Cell borders

    BwanaP wrote:
    > There must be a way to assign a border only to one of the four edges of a
    > cell, but I can't see how. The cell properties only shows border color. Is
    > there another way to put a line between cells?
    >
    > When I create a table and set the border to 0, there is no visual aid to see
    > the cell - can this be added? When I view a page created in FrontPage I can
    > still see the dotted gridlines used for this.
    Hi

    html will apply the border to all 4 sides of the cell, you can use CSS
    to pick out a single border.

    ..mystyle{
    border-left: 1px solid #666;
    }

    You would apply that style to the td tag you wanted the border to appear in.

    If you feel you need to see the html border while you work set it to 1
    and then return it to 0 before you publish.

    --
    Cheers jojo
    Team Macromedia Member Volunteer for Dreamweaver MX
    ----------------------------------------------------
    CF CMS Details: [url]http://www.dwfaq.com/Store/detail/?id=wdCFcms[/url]
    CF CMS Demo: [url]http://www.webade.hostinguk.com/cfcms/[/url]
    ----------------------------------------------------
    Extending Knowledge, Daily.
    [url]http://www.communityMX.com/[/url]
    ----------------------------------------------------

    jojo Guest

  5. #4

    Default Re: Cell borders

    you can use css (remove all attributes from the table), eg:

    <style>
    table {
    border-collapse: collapse; /*this will remove the gap between cell
    borders*/
    }
    td {
    border-style: solid;
    border-color: #000000;
    border-width: 0px 1px 0px 1px;
    }
    </style>

    experiment with the css border settings in DW.

    joe



    "BwanaP" <sedorype@state.gov> wrote in message
    news:bfo30s$1vk$1@forums.macromedia.com...
    > There must be a way to assign a border only to one of the four edges of a
    > cell, but I can't see how. The cell properties only shows border color. Is
    > there another way to put a line between cells?
    >
    > When I create a table and set the border to 0, there is no visual aid to
    see
    > the cell - can this be added? When I view a page created in FrontPage I
    can
    > still see the dotted gridlines used for this.
    >
    >

    Joe {RoastHorse} 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