Table and cell borders

I use CS4. I created a table style in my stylesheet that calls for an orange 2 px wide border. The border only described the entire table, but not individual cells. Anyone know how I can fix this in the stylesheet?
The URL is http://www.virginiacpac.org/pages/conference.html
Thank you

Hello

Try this:

{.table_border}
border-collapse: collapse;
}
.table_border td {}
border: 2px solid #E2832F;
padding: 2px;
}

Take care
Tim

"dlipscombe" wrote in message
News:giekco$BQJ$1@forums. Macromedia.com...
> I'm using CS4. I set up a table style in my stylesheet that calls for a 2
> px
> orange wide border. The border only outlines the entire table but not the
> individual cells. Anyone know how I can fix this in the stylesheet?
> The URL is http://www.virginiacpac.org/pages/conference.html
> Thank you,
>
> .table_border {}
> border: 2px solid #E2832F;
> padding: 2px;
> }
>

Tags: Dreamweaver

Similar Questions

  • Centering the table and cell borders.

    Hello, everyone:

    I am creating a tabular presentation and wish to have my main table (containing another table in some of its cells) is centered in the window of my browser so that as the viewer resizes the window web page design remains in the Middle both in horizontal and vertical plans. I found a command in Dreamweaver that allows me to Center a table on the horizontal plane, but nothing that allows me the same thing on the vertical plane. How can this be accomplished? I prefer to stay away from CSS that I'm still not familiar and sufficiently comfortable around her. I prefer to stay with a simple table layout.

    I also try to set fixed sizes for my table cells, but have not found a way to do it. I managed to create transparent GIF images to use as placeholders but (1) this seems to be too much work for something that probably can be accomplished in a much easier way and (2) the cells are not confined to the size of the GIFs and eventually larger than GIF images.

    Any suggestions will be appreciated.

    Thank you in advance,

    Joseph Chamberlain

    James:

    I thank you for your help and you have my apologies for this late reply.

    I looked at the link you provided and it has the answer to my question. Thank you once again. I wish just that there is a simpler and intuitive to do.

    Best regards

    Joseph Chamberlain

  • Table and cell Style

    Hi all

    Greetings...

    The script below works perfectly in indesign CS3 to apply table and cell style. But in indesign CS4 shows runtime error. Kindly help me on this...

    var myTable = app.activeDocument.stories.everyItem().tables; 
    
    for (var n=0; n < myTable.length; n++)
    { 
         myTable[n].appliedTableStyle = "Table Style 1"; 
         myTable[n].cells.everyItem().appliedCellStyle = app.activeDocument.cellStyles.item("[None]");
         myTable[n].cells.everyItem().clearCellStyleOverrides (true); 
    
         alert(myTable[n].rows.length);
    
        for (var a = 1; a < myTable[n].rows.length - 2; ++a)
         {
               myTable[n].rows[a].cells.everyItem().appliedCellStyle = "T body";
               alert(a);
         }
      
        myTable[n].rows[0].cells.everyItem().appliedCellStyle = "T col hd";//First Row 
         myTable[n].rows[-1].cells.everyItem().appliedCellStyle = "T body bot";//Last Row
    
    }
    

    Thank you

    Knockaert

    Hi Karthik,

    Please try the JS Code below and come back.

    var myTable = app.activeDocument.stories.everyItem().tables;
     for (var n=0; n < myTable.length; n++){
    //~      myTable[n].appliedTableStyle = "Table Style 1";
    //~      myTable[n].cells.everyItem().appliedCellStyle = app.activeDocument.cellStyles.item("[None]");
    //~      myTable[n].cells.everyItem().clearCellStyleOverrides (true); 
    
    // Please check the table cell styles name is correct or not?
        var myActiveTable = myTable[n];
        myActiveTable.rows.itemByRange(0,-2).cells.everyItem().appliedCellStyle = "TB";
        myActiveTable.rows[0].cells.everyItem().appliedCellStyle = "TCH";//First Row
       myActiveTable.rows.itemByRange(-2,-1).cells.everyItem().appliedCellStyle = "TBB";//Last Row
        }
    

    the output of code js above looks like this snapshot.

    THX

    csm_phil

  • AppleScript to apply styles of table and cell in IDCS4

    I have an Applescript script to format all the tables in a document as I want.  It is adapted from a previous version that did not use styles, that works perfectly.  This script creates styles if they are not present and this bit works fine, but when it starts to try to apply them to the tables, it falls.

    tell application "Adobe InDesign CS4"
         tell active document
              set BlackColor to color "Black"
              set SolidStroke to stroke style "Solid"
         end tell
         tell active document
              try
                   set myTablePara to paragraph style "4.2 Table text"
              on error
                   set myTablePara to make paragraph style with properties {name:"4.2 Table text", applied font:"Helvetica Neue", font style:"Regular", point size:"8.5", leading:"10"}
              end try
              try
                   set myBasicCell to cell style "Basic cell"
              on error
                   set myBasicCell to make cell style with properties ¬
                        ¬
                             {name:¬
                                  "Basic cell", bottom edge stroke weight:0 ¬
                                  , bottom edge stroke color:BlackColor ¬
                                  , bottom edge stroke type:SolidStroke ¬
                                  , right edge stroke weight:0 ¬
                                  , right edge stroke color:BlackColor ¬
                                  , right edge stroke type:SolidStroke ¬
                                  , top edge stroke weight:0 ¬
                                  , top edge stroke color:BlackColor ¬
                                  , top edge stroke type:SolidStroke ¬
                                  , left edge stroke weight:0 ¬
                                  , left edge stroke color:BlackColor ¬
                                  , left edge stroke type:SolidStroke ¬
                                  , left inset:¬
                                  "0p4", right inset:¬
                                  "0p4", top inset:¬
                                  "0p4", bottom inset:¬
                                  "0p4", vertical justification:top align ¬
                                  , applied paragraph style:myTablePara}
              end try
              try
                   set myHeader to cell style "Header"
              on error
                   set myHeader to make cell style with properties ¬
                        {name:¬
                             "Header", based on:myBasicCell ¬
                             , bottom edge stroke weight:¬
                             "0.5pt", top edge stroke weight:"0.75pt", vertical justification:bottom align ¬
                             }
              end try
              try
                   set myFooter to cell style "Final Row Cell"
              on error
                   set myFooter to make cell style with properties ¬
                        {name:¬
                             "Final Row Cell", based on:myBasicCell ¬
                             , bottom edge stroke weight:¬
                             "0.75pt"} ¬
                             
              end try
              try
                   set myLeftCol to cell style "First Column Cell"
              on error
                   set myLeftCol to make cell style with properties ¬
                        {name:"First Column Cell", based on:myBasicCell, left inset:0}
              end try
              try
                   set myLeftHeader to cell style "First Row, First Column Cell"
              on error
                   set myLeftHeader to make cell style with properties ¬
                        {name:"First Row, First Column Cell", based on:myHeader, left inset:0}
              end try
              try
                   set myLeftFooter to cell style "First Column Last Row Cell"
              on error
                   set myLeftFooter to make cell style with properties ¬
                        {name:"First Column Last Row Cell", based on:myFooter, left inset:0}
              end try
              
              try
                   set myTableStyle to table style "Horizon"
              on error
                   set myTableStyle to make table style with properties {name:¬
                        "Horizon", body region cell style:¬
                        myBasicCell, header region cell style:¬
                        myHeader, footer region cell style:¬
                        myFooter, left column region cell style:myLeftCol}
              end try
         end tell
         set allTables to every table of every story of active document
         repeat with i from 1 to count of allTables
              set myTable to item i of allTables
              set table style of myTable to myTableStyle
              set properties of cells of myTable to ¬
                   {cell style:myBasicCell}
              set properties of cells of first column of myTable to ¬
                   {cell style:myLeftCol}
              set properties of cells of first row of myTable to ¬
                   {cell style:myHeader}
              set properties of cells of last row of myTable to ¬
                   {cell style:myFooter}
              set properties of first cell of first row of myTable to ¬
                   {cell style:myLeftHeader}
              set properties of first cell of last row of myTable to ¬
                   {cell style:myLeftFooter}
              clear cell style overrides
              clear table style overrides
         end repeat
    end tell
    

    When it is to 'set style table of myTable to myTableStyle' it is said ' impossible to define style table id of the table to text frame id page id 220 190 of spread id 185 [the first table] document \"Untitled-1\" table style id 264 [style newly generated] document \"Untitled-1\" 224 "  But I can't tell why.  Can anyone help?

    Table and cell styles are objects. When you want to apply, you must set the appropriate properties that are 'applied the style of table"and"cell style ". So: «the game applied style table myTable...» »

    But in terms of results, you'll be probably happier using the commands ' apply the style of table cell / ' instead, which allows you to clear the replacements.

    --

    Shane Stanley [email protected]>

    AppleScript Pro Sessions http://scriptingmatters.com/aspro>

  • Tame the table and cell styles

    I find table styles and cell styles to be quite a nightmare in InDesign - in other words, as long as the paragraph style is included in the definition of the cell style. The only way I could get a table without substitution involves the steps as much as it is not effective:

    1) click an empty paragraph.

    (2) apply the paragraph style.

    (3) type the text that will come eventually in a table cell. (All my paintings are a cell, a column tables).

    (4) select the text without selecting the symbol of paragraph at the end.

    (5) choose table > convert text to table.

    I would be very happy if anyone knows of a script that can do these steps and can put me out of my misery.

    (Or maybe is there a way to avoid cell style replacements that I did not discover. (There was a discussion on this problem to http://forums.adobe.com/message/2043634#2043634, but none of the suggestions got rid of substitutions of paragraph style cell.)

    Hi jay

    You should check the character styles. If paragraph styles will not be on the trip, I found that it is because it applies a character style. Some people use styles to the paragraphs format characters. (?!)

    RB

  • tables and cell phone screen

    Does anyone know an html tag or css that can load another page, if the browser detects Web site is loaded on a phone screen?  or any other solution to put a couple of things in tables maybe so they load correctly on a mobile phone?  I have some pages I'm working very well and they load fine on my laptop and my MS Surface, but watching them in dreamweaver using the resolution feature, the tables don't look just to the right, so I would like to know if there is an alternative out there that might work and always show things in a table properly.

    Thank you.

    Use div tags 3 or more floating that breaks over a width of single column on smaller devices.

    CSS MEDIA QUERY

    =================

    @media only screen and (min-width: 769px) {}

    . Row {overflow: hidden}

    / * clear floats * /.

    . Row: after {}

    Clear: left;

    Display: block;

    content: '.';

    visibility: hidden

    }

    . Box {}

    Width: 33.33%;  / * 3 rows * /.

    float: left;

    }

    }

    HTML CODE:

    ================

    It's 1 box

    It is area 2

    It's box 3

    It's 1 box

    It is area 2

    It's box 3

    Nancy O.

  • How can I export table and cell styles to use in another InDesign document?

    I've been looking for... and looking but cannot find out how to export table styles in InDesign CC. If there is an option of the control panel load table styles, it goes without saying that there should be an export. Any help would be appreciated, thanks.

    Frank.GRG wrote:

    If there is an option of the control panel load table styles, it goes without saying that there should be an export.

    I understand your logic, but you think too much of it. Charge function Styles opposes the need for an export feature. When you call the function of load, you simply select the source document, then the individual styles that exist already in it. They need not be implemented beforehand.

  • I am self-taught and use since CS4 - archaic, tables, etc. for years smoothly other than those associated with tables and cells.

    I can not Dreamweaver to find the .jpgs I put on the remote server.  I can bring to the top of the page on the Internet, but not jpg - three on the page.

    I can't get Dreamweaver to keep the remote path.  I don't have local copies of my existing site on Dreamweaver.  The page works fine, links, etc.  I'm trying to add a page, not a site, but when the page is in place the jpgs will not appear.  My only choice in Dreamweaver are refferences "site" and the document.  I put the remote path in a zillion times in many ways.  But no connection.

    I created a new page and it is the only one that I'm trying to get the jpg images to be called from.  The remote page is: www.columbianexpositiontickets.com/All Pages/ferrispage/mainferris.htm ticket sales.  There are three JPGs on the page and everything just, I don't know how to change the situation where the jpg files will appear.

    I have three JPEG images in the folder 'ferrispage' and even a 'pictures' folder in the same folder.

    CS4, Win7.

    I do not know how to change the remote possibility, just "site" and "pertinent" are presented.  I sometimes get a "530 login incorrect.

    Drives me crazy, as everyone and suggestions would be appreciated.

    Thank you, Hal Hill

    Well, let's start with this unfortunate image in your source code:

    "height FTP://halhill:***@74.91.214.252/columbianexpositiontickets.com/All%20Ticket%20Sales%20page s/ferrispage/frontlargecert.jpg" ="388" border ="0" width = "500" > ".

    Immediately, I know what the problem with this link.  The question is do you have?

    TIP #1: %20 is spaces.  Use no spaces or special characters in web folder or file names.  She creates problems on the server.

    TIP #2: Remove all this:

    FTP://halhill:***@74.91.214.252/


    and replace with this:

    http://

    It is a problem solved.

    See if you can solve yourself the other paths of bad image.

    Nancy O.

  • creation of cell borders

    Hello

    I am importing a table xml in the indesign document, but the table and cell borders aren't get created. What can be the reason?

    I used all the necessary attributes for creating a table.

    Help, please

    Thank you

    Hello

    inside of the

    is the only problem. Try this one...

    http://www.NISO.org/standards/Z39-96/NS/OASIS-exchange/table">

    http://ns.Adobe.com/AdobeInDesign/4.0/' aid: pstyle = "bch_tbtt" >

    Table 14.1

    Mechanisms of isolation

    http://ns.Adobe.com/AdobeInDesign/4.0/' aid: table = 'table' aid: trows = "10" aid: tcols = "1" >

    http://ns.Adobe.com/AdobeInDesign/4.0/' aid: pstyle = "bch_tbcn_left" >

    abcdefghijklmnop

    http://ns.Adobe.com/AdobeInDesign/4.0/' aid: pstyle = "bch_tbcn_left" >

    http://ns.Adobe.com/AdobeInDesign/4.0/' aid: pstyle = "bch_tbcn_left" >

    Species are found in different areas, which are often separated by a physical barrier such as a river or a mountain range.

    http://ns.Adobe.com/AdobeInDesign/4.0/' aid: pstyle = "bch_tbcn_left" >abcdefghijklmnop

  • Possible to option and click to add a new table lines WITH borders

    I recently "upgraded" to the latest version of the Pages. In the version previous (Pages ' 09), option-click on a row or column added a line or column and the new, it would automatically have the same borders that has been clicked on the option.

    In this new version, option-click adds the row or column, but it is not about the attributes of the edge of the line or the previous column.

    Is it possible to do without having to go into the cell style attributes and assign borders for each?

    Any rejection of Pages v5 (including 5.6.2) is based on the Pages ' 09 v4.3. They are quite different applications and v5 lacks about 100 features that did not exist in the Pages ' 09. Even the architecture of document is not backward compatible. Your upgrade to the last Pages is a downgrade in functionality, and Pages ' 09 likely lies in Applications: iWork ' 09 file. Use and treat yourself to a true upgrade.

    That said, I've selected a line in a new table of Pages v5. Changed the border line and color to 2 pt and blue respectively. Then I option-click on this line several times, and the added lines were identical on the border style has changed from the original line. I can't reproduce your problem described here.

    Tested with Pages v5.6.2 on OS X 10.11.6.

  • Contours and graphic cell borders

    I'm relatively new to InDesign and previously had a lot of help in the design of this table first.  I am trying to remove the borders from the header row at the top around the images of the property, but I can't seem to get the borders go away.  I'm parameters table changed or not boarders with the selected line and also changed no color lines and none for the cell borders I want to disappear.

    Any ideas on why they won't go away?

    Capture.PNG

    I am trying to remove the header at the top line borders around the images of the property

    Select border you want to remove, and then apply the zero stroke or no color stroke color.

  • Table cell borders appears in Chrome

    For all my subjects, the borders around individual cells in all tables not displayed when I viewed using Chrome. In addition, everything else works fine with Chrome and display the cell borders as it should in IE and Firefox (Firefox has however some independent display other problems). I use a table style to format all of the tables, but the style has no cell borders because I could never make it work like I wanted. I use the style for all tables and then manually add the cell borders. Could be that something to do with it, there may be a known issue that I couldn't find anywhere?


    RoboHelp10 / WebHelp Pro SSL / release of SharePoint hosted in 10 files


    Chrome (forgive my content)

    Robo_Table_Cell_Chrome.png

    IE/Firefox (again with the content)

    Robo_Table_Cell_IE.png

    Yah, so I was affecting the cell borders inner .5pt on all my paintings. Changed to 1px instead, and they now appear in Chrome very well. I'll mark my answer as the correct answer and advise The captain Obvious. Apparently, it seems that any rule defined below .8pt in will not display in Chrome. Not sure if that is a thing of RoboHelp or a Chrome thing?

    Best regards.

  • Change the color of the CS5 without CSS table cell borders

    Hello

    I need to change the color of the cell borders on a painting I did in CS5

    BUT

    I can't use CSS in this case because for some reason, she makes my messages in wordpress going crazy. Some conflicts, perhaps.

    I am using the CSS for some things in Wordpress and its fine, but for some reason any when I add the CSS code in my posts it will banans and everything did go in all directions.

    I know that in older versions of Dreamweaver, it was a simple case of using brdr , but now he must use CSS right? Now I love CSS! It's the best thing to happen to the internet since the Web 2.0 - but in this case, I just need to change the border color of transparent cells... or to get rid of it completely.

    Then. is there another way that anyone could recommend?

    I'm going crazy with this! It's also a little problem... and I have so many other things I need to focus on.

    Anyway, thanks for reading. Any help would be great

    P.I >

    big dreamers never sleep

    I expect that if you were adding an external stylsheet and try to use a selector class or element, especially if something happens later in the css.

    You should be able to use a style inline cell specific itself without causing WordPress to have fits on the rest of the table...

    or

    Or others should do.

  • With the last update, I am unable to merge cells in a table and Ive tried Split and Live view.

    With the last update, I am unable to merge cells in a table and Ive tried Split and viewing live, all the tutorial and manuals say to do in Design view, which is no longer available.  How to merge cells in a table now?

    To get the fashion Design back in a checkerboard to fluid...

    Close all other files, open the fluid grid css and add the X below:

    /*

    Properties Grid Dreamweaver fluid

    ----------------------------------

    DW-num-CLO-mobile: X 4;

    DW-num-CLO-Tablet: 8;

    DW-num-OCOL-Office: 12;

    DW-gutter-percentage: 25;

    =====================================

    Then save and close the file.

    DW restart and you should have mode Design from here out on all files using this fluid grid .css file.

  • Using conditions to automatically assign cell borders

    I was wondering if it was possible to use such terms in conditional highlighting or formulas Boolean to automatically generate cell borders to format my table automatically?

    This is a good feature if it is not possible at the moment because I work with what is considered to be a set of relatively small data for my line of work, and to properly format for easy use later it took me several hours already. It would be nice to be able to set up a model with conditional highlighting and automatic cell borders in order to shape future data sets easily.

    Hi Nagarok,

    Conditional highlighting rules currently provide only to set fill color, text color and style of the text (bold, italic, etc.) according to a given condition.

    Use to provide feedback from numbers found in the menu numbers Nubers for make a request for additional features,

    Kind regards

    Barry

Maybe you are looking for

  • How can I run the preinstalled for my Satellite M200-E411 Partition?

    I have a laptop Toshiba Satellite M200-E411, I have a problem with the current operating system, but I know that my laptop has a Partition preinstalled to receovery the original OS. But I do not know what function key when the computer starts. Can so

  • Stuck highlighting affected elements Iphone 6 s, iOS 9.2

    Phone dropped and in a fraction of a second the phone entered into mode of climax, where it will not stop highlighting everything you touch. I reset the phone and it is still emphasizing everything I touch instead of entering it.  When I try to use m

  • Is the ban for the compatible with the X 220 X 230?

    Hello! I was wondering if the ban for the X 230 (type 4338) is compatible with the X 220. Thank you!

  • DVD/cd player looking for disc when there is already one in place.

    My dvd/cd drive is no longer bed or written records as it does not recognize that there is a disc in the drive.  I tried all types of discs and auto repair, nothing helps.  Self said there's a problem, they can not fix.  the Device Manager shows the

  • photos do not open "by date" in Vista

    Vista of my wife, when I open a folder in images, I want to automatically sort by"date".   I chose "by date" in this subfolder, but it opens "by name", and whenever I have to wait for it to go through the process of sorting 'by date '.   This situati