Removing table borders

Is it possible to remove the line borders for a table? I have a document that has 2 columns. In one of my columns I want to have a section that has 2 columns in it. I could not figure out how to do that so I decided to use a 2 column table. Now I would like to turn off the borders to just get the (sub) 2 column effect. Don't see how to do that.
1. Is it possible to have a 2 column section inside an existing column of text.
2. How do I turn off the line borders for a table?
Thanks,
Alfredo

Hello Alfredo Jahn,
1) You can have a three column layout between two two column layouts on a page and you can adjust it so it looks like a two column layout with a little section of two columns in one of the big columns. See this multi-column page image:
Insert two layout breaks (menu: "Insert/Layout Break"). Set the text cursor into the second layout and show the layout inspector. Set the column count to three and deactivate the option for same column with. Now set the width of the columns and spaces between them manually in the list, so it looks like you need them.
But you have no text flow between the different column layouts, because there are layout breaks.
2) When the table is selected, show the table inspector and press in the tab "Table" in the bottom section the left button of the button row titled "Borders". Now all borders are selected. Show the graphic inspector and disable the line appearance in the pull-down menu.
You can select every border of every cell by option-click on them (for multi-selection hold the shift key).

Similar Messages

  • Ole Word Automation, Remove Table Borders

    Hi All,
    I have created a new word document with a table of 3 rows and 3 columns using the ole. I want to remove vertical lines. The borders property enable only shows or disables the borders. I want to remove any border I want.
    I recorded a macro at Word. But I couldn't managed to adopt in ABAP. I will be glad if you can help. Thanks.
    Word Macro :
    Selection.Borders(wdBorderRight).LineStyle = wdLineStyleNone
    ABAP code :
      GET PROPERTY OF gs_actdoc 'Tables' = gs_tables .
      GET PROPERTY OF gs_selection 'Range' = gs_range .
      CALL METHOD OF gs_tables 'Add' = gs_table
      EXPORTING
      #1 = gs_range
      #2 = '3'
      #3 = '3'.
      GET PROPERTY OF gs_table 'Borders' = gs_table_border .
      SET PROPERTY OF gs_table_border 'Enable' = '1' . "With border

    Hi,
    I've found a solution.
    After creating table and enabling borders, you can select cells and delete borders.
      GET PROPERTY OF gs_actdoc 'Tables' = gs_tables .
      GET PROPERTY OF gs_selection 'Range' = gs_range .
    **--Adding a table with 3 rows and 3 columns
      CALL METHOD OF gs_tables 'Add' = gs_table
      EXPORTING
      #1 = gs_range " Handle for range entity
      #2 = '3' "Number of rows
      #3 = '3'. "Number of columns
    **--Setting border attribute for the table
      GET PROPERTY OF gs_table 'Borders' = gs_table_border .
      SET PROPERTY OF gs_table_border 'Enable' = '1' . "With border
      CALL METHOD OF gs_table 'Cell' = gs_cell1
      EXPORTING
      #1 = '1' "first row
      #2 = '1'. "first column
      CALL METHOD OF gs_cell1 'BORDERS' = borders
        EXPORTING
        #1 = '2'. "1 top, 2 left, 3 bottom, 4 right (border)
      SET PROPERTY OF borders 'LineStyle' = '0'.

  • How do you remove the borders from a table item

    In OAF I have a set of data stored in a table that I must display. However, I must make it look like it is not in a table. I can't use a tablelayout because it is a set of records and records are constantly being added. How do I remove the borders and the pagination from the table?

    I think you can't do anything about this.
    Change you design as per Browser Look and Feel standards.
    http://www.oracle.com/technology/tech/blaf/index.html
    --Prasanna                                                                                                                                                                                                                                                                                                                                                       

  • How to remove table cell borders

    Hi,
    I’m using dreamweaver cs6.first i create a HTML page then i create a div tag (800w 900 h) & create a table inside of above div. i want to keep table border & make it to tickness, want to remove cell borders. I can’t find any options to remove the cell borders. Please any one can help me.
    Thank you.

    table.borderless {
    border-width: 0px;
    background-color: white;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
    text-transform: none;
    table.borderless th {
        border-width: 0px;
        padding: 5px;
        background-color: white;   
    table.borderless td {
        border-width: 0px;
        padding: 5px;
        background-color: white;
    <table width="250" height="150" align="center" class="borderless">
    <tr>
      <th colspan="2" class="style1">Borderless table<br />
       cell 1 &amp; 2 merged</span> </th>
      </tr>
    <tr>
      <th class="borderless">cell 3 </th>
      <td class="borderless">cell 4 </td>
    </tr>
    <tr>
        <th>cell 5 </th>
        <td>cell 6 </td>
    </tr>
    </table>

  • Prevent IC user drag table borders in Assignment

    How can I prevent that an incopy user is able to 'drag' table borders within an assignment/?
    I want the user to edit table text and figures but not to edit the layout/size of the table cells.

    To prevent ctrl-c /v /x modify the InputMap (and ActionMap) associated with the JTable.
    Look at SwingUtilities.getUIActionMap(...), SwingUtilities.getUIInputMap(...)
    InputMap map = SwingUtilities.getUIInputMap(myTable,1);
    mapi.remove(KeyStroke.getKeyStroke(KeyEvent.VK_C,InputEvent.CTRL_MASK ));This code remove the ctrl-c for the specified component (myTable).
    I hope this helps,
    Denis

  • How do I Format Table Borders in Header DW-CS5

    I am building a website with DWCS5 and I can not find where to format the borders of the tables in my header.
    The page is here
    http://www.bountifulspinweave.com/aaaa_copy.htm
    Any guidance would be appreciated.
    Thank you in advance,
    Lois

    First you would remove  'border="10"  from the html table code. Then you would add some css to style ALL the table borders inside the .header1 <div>:
    <style type="text/css">
    .header1 table {
      border: 10px solid #0C3;
    </style>
    Below is the complete html code and css:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    .header1 table {
    border: 10px solid #0C3;
    }</style>
    </head>
    <body>
    <div class="header1">
    <table width="963" height="260">
            <tr>
              <td width="935" height="236" bgcolor="#680080"> <table width="915" height="196">
                <tr>
                  <td width="156" height="172" bgcolor="#680080"><a href="logo-ft.gif"> <img src="_borders/bountiful_logo.jpg" alt="Bountiful Logo" width="152" height="155" align="absmiddle" /></a></td>
                  <td width="725"><table width="723" border="0">
                    <tr>
                      <td width="657" height="43" bgcolor="#d2b3d1">BOUNTIFUL</td>
                    </tr>
                    <tr>
                      <td bgcolor="#d2b3d1">Your Wheel and Loom Specialists since 1988</td>
                    </tr>
                    <tr>
                      <td bgcolor="#d2b3d1">Celebrating 23 years of unparalled customer service</td>
                    </tr>
                    <tr>
                      <td height="37" bgcolor="#d2b3d1">Toll Free: 877-586-9332 from 8am to 8pm MST</td>
                    </tr>
                  </table></td>
                </tr>
              </table></td>
            </tr>
          </table>
          </div>
    </body>
    </html>

  • Table borders offset in PDF output

    I am using RoboHelp HTML, version 9 and I need to deliver two outputs for my documentation: WebHelp and PDF.
    My table borders look the way I want them to in WebHelp and Word, single line and thin (1px).
    But when we go to PDF, I get two sets of lines, one all the way around my cells, another with gaps of white space.
    I think its something to do with 3d borders not getting totally eliminated.
    I've added "table-collapse: collapse;" to all my table styles.
    Any ideas?
    Note: If I create a table originally in Word with thin single line borders, it looks fine in PDF.
    Here's how it looks in WebHelp and Word...
    And then in PDF...

    Peter,
    Yes, as I mentioned in an earlier post, I really like the help design on your web site. I researched many looks in preparing for a new stylesheet project. Ended up emulating a lot of your elements rather than reinvent the wheel.
    Hope you are OK with that. Imitation is the sincerest form of flattery (definitely in my case).
    Anyhow, I figured out my problem. The CSS for my original tables was using 5px padding all around. In Word output, this gets converted to table cell margins.
    And that's what the PDF conversion doesn't like. Take out the original CSS padding--or the converted Word cell margins--and the problem goes away, leaving clean unbroken table lines in the PDF.
    Best regards.

  • When converting tables in a MS Word 2010 or 2007 to PDF the table borders do not retain the correct thickness as identified in the word document.  Is there a solution for this issue?

    When converting tables in a MS Word 2010 or 2007 to PDF the table borders do not retain the correct thickness as identified in the word document.  Is there a solution for this issue?

    Please try with latest version of MS Word and Acrobat.
    Regards,
    Anoop

  • Table borders show up with Firefox or IE but not Safari (Win or MAC)

    This very simple site (http://www.brandondean.net) has two table borders that show up under FF and IE but not Safari (either Win v4.0 or Safari for MAC, same result). I'm not an expert but I did the work using Dreamweaver 2004 MX as XHTML compliant, tested every page at W3C.org to make sure they comply with XHTML, and they do (except for my not putting in "alt" on images). I even downloaded Dreamweaver CS4 to run the "clean up the code" command and nothing is fixing the problem. I'm hoping someone out there has seen this before and can help us out. Thx.

    Hi Gary,
    It's probably just because the border widths you are specifying are too small (or WebKit is interpreting picas differently to Firefox/IE - I say WebKit as the same problem is visible in Google Chrome and that uses WebKit like Safari as well).
    Try setting using this instead:
    .borders {
    font-family: Verdana;
    font-size: 10px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    color: #cccccc;
    text-decoration: none;
    border: 1px solid #888888;
    That seems to do the trick for Firefox and Chrome on this Linux machine I'm using at the moment.

  • Poor Quality Table borders in PDF

    Hello.
    I am having problems having the tables borders in Word 2007 look the same in the PDF (using Arobat 9 Pro). The quality is very poor which appears the lines are thicker than in the Word document. I am using 4000 DPI, High Quality print but still looks bad.   Images look good it is just the table borders that are the problem.  Do you have any suggestion in improving this? Or is this a problem I have to live with?
    Regards,
    Len

    Converting Word (table) to pdf - lines screwed up - googled as far back as 2004.
    BUG STILL exists. HELP/FIX PLEASE? 
    http://www.pcreview.co.uk/forums/missing-table-lines-conversion-pdf-t878406.html 
    http://forums.adobe.com/thread/305508 
    Trying to convert any word doc with tables (& shading) to PDF 
    - basic table, black borders throughout 
    - shaded headings, black outline border 
    - shaded subheadings, black outline border 
    However when convert to PDF: 
    - 'displays' NO top cell border for some/all shaded rows 
    - shows diff thickness lines 
    - each conversion, diff lines missing/incorrectly sized 
    - however converted pdf prints perfectly fine 
    Adobe know about the bug, per PRMW's (Paul's) post on 2009-07-15  15:44:34, however only offered a painful time consuming workaround using  non-freeware Adobe Pro: 
    http://acrobatusers.com/forum/pdf-creation/word-pdf-table-lines-missing-or-faded#comment-7 8139 
    - "It is not feasable to edit 200+ tables in the PDF every time the PDF is generated, as we maintain the original in word. 
    - "This complete issue seems to have been passed off by Adobe as no  problem and that there is a work around. I consider this an  unsatisfactory response from a major product supplier. 
    Microsoft TechNet & NitroPdf said it's an Adobe issue & to contact Adobe to fix the bug. 
    Tried, but proble exists: 
    * Word 2010 > File  > Save & Send > Create PDF/XPS Document 
    * Word 2010 > Save As > Pdf 
    * Word 2010 > Print > PrimoPdf  (even tried properties > advanced > dpi 300/600/2400) > Custom 
    * Word 2010 > Print > doPDF v7  (even tried 'high quality images) 
    * Word 2010 > Print > PDFCreator 
    * Word 2010 > Print > CutePdf Writer      (even worse) 
    * Nitro Pdf Reader  > Convert From File > (even worse) 
    * www.pdfonline.com > Word to Pdf         (even worse) 
    * www.wordtopdf.com > email: Sorry, an unexpected conversion failure occurred when converting your file. 
    Software: 
    * Word 2010 - tried with .docx & .doc (97 to 2003) 
    * Adobe Reader 8.2.6 (freeware), then upgraded to Adobe Reader X 10.0.1 (freeware) 
    * GhostScript 9.01 w32 (freeware) 
    * CutePdf Writer (freeware) 
    * PrimoPdf (freeware) 
    * Nitro Pdf Reader 1.4.0.11 (freeware) 
    * doPDF 7.2.361 (freeware) 
    * PDFCreator 1.2.0 (opensource - www.pdfforge.org) 
    Seems to display better at 300%, but lines still not right (even at 2400%), but who views pdf's at this zoom? 
    Message was edited by: shell_l_d

  • Table borders for html Page

    HEllo ABAPERS,
    KINDLY HELP .
    I have developed a report which displays a html page in a custom control .But while printing it not displaying table borders . I have used method display_document ffor printing .Can anyone tell me the reason why is it not printing borders ?
    Following code is the code for subroutine and PBO : -
    MODULE status_0322 OUTPUT.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
      IF first_display EQ 'X'.
        SET PF-STATUS 'PMENU'.
    create document
        CREATE OBJECT do.
    fill document
        PERFORM display_data USING do t_no.
    merge document
        CALL METHOD do->merge_document.
    display the document inside the container named 'mmscr
        CALL METHOD do->display_document
          EXPORTING
            container          = 'MMSCR'
          EXCEPTIONS
            html_display_error = 1.
        " do some exception handling ...
        CLEAR first_display.
      ENDIF.
    ENDMODULE.                 " STATUS_0322  OUTPUT
    *&      Form  display_data
    FORM display_data USING p_do TYPE REF TO cl_dd_document P_no type n.
      DATA ta1 TYPE REF TO cl_dd_table_element.
      DATA col11 TYPE REF TO cl_dd_area.
      DATA col12 TYPE REF TO cl_dd_area.
      DATA col13 TYPE REF TO cl_dd_area.
      DATA col14 TYPE REF TO cl_dd_area.
      DATA col15 TYPE REF TO cl_dd_area.
      DATA head1 TYPE sdydo_text_element.
      DATA head2 TYPE sdydo_text_element.
      DATA head3 TYPE sdydo_text_element.
      DATA head4 TYPE sdydo_text_element.
      DATA text TYPE sdydo_text_element.
      CALL METHOD p_do->new_line.
          CALL METHOD p_do->add_table
            EXPORTING
              no_of_columns               = 5
              cell_background_transparent = space
              with_heading                = 'X'
              border                      = '5'
              width                       = '50%'
            IMPORTING
              table                       = ta1.
    set columns
          CALL METHOD ta1->add_column EXPORTING heading = head1
                                                width   = '10%'
                                      IMPORTING column  = col11.
          CALL METHOD ta1->set_column_style EXPORTING col_no    = 1
              sap_color = cl_dd_area=>list_background_int.
          CALL METHOD ta1->add_column EXPORTING heading = head2
                                                width   = '15%'
                                      IMPORTING column  = col12.
          CALL METHOD ta1->add_column EXPORTING heading = head3
                                                width   = '15%'
                                      IMPORTING column  = col13.
          CALL METHOD ta1->add_column EXPORTING heading = head4
                                      width   = '15%'
                                      IMPORTING column  = col14.
          CALL METHOD ta1->add_column EXPORTING heading = head4
                                                width   = '15%'
                                      IMPORTING column  = col15.
    fill columns
          text = ' '.
          CALL METHOD col11->add_text
            EXPORTING
              text = text.
          text = 'Init'.
          CALL METHOD col12->add_text
            EXPORTING
              text = text.
          text = 'Supv No'.
          CALL METHOD col13->add_text
            EXPORTING
              text = text.
          text = 'Date'.
          CALL METHOD col14->add_text
            EXPORTING
              text = text.
          text =  'Discrepancy Report Notation'.
          CALL METHOD col15->add_text
            EXPORTING
              text = text.
          CALL METHOD ta1->new_row
            EXPORTING
              sap_color = cl_dd_area=>list_background.
          text = 'Q/C by'.
          CALL METHOD col11->add_text
            EXPORTING
              text = text.
          text = ' '.
          CALL METHOD col12->add_text
            EXPORTING
              text = text.
          CALL METHOD col13->add_text
            EXPORTING
              text = text.
          CALL METHOD col14->add_text
            EXPORTING
              text = text.
          CALL METHOD col15->add_text
            EXPORTING
              text = text.
          CALL METHOD ta1->new_row.
          text = 'Received by'.
          CALL METHOD col11->add_text
            EXPORTING
              text = text.
          text = ' '.
          CALL METHOD col12->add_text
            EXPORTING
              text = text.
          CALL METHOD col13->add_text
            EXPORTING
              text = text.
          CALL METHOD col14->add_text
            EXPORTING
              text = text.
          CALL METHOD col15->add_text
            EXPORTING
              text = text.
          CALL METHOD ta1->new_row.
          text = 'Sign Off'.
          CALL METHOD col11->add_text
            EXPORTING
              text = text.
          text = ' '.
          CALL METHOD col12->add_text
            EXPORTING
              text = text.
          CALL METHOD col13->add_text
            EXPORTING
              text = text.
          CALL METHOD col14->add_text
            EXPORTING
              text = text.
          CALL METHOD col15->add_text
            EXPORTING
              text = text.
          CALL METHOD do->new_line
            EXPORTING
              repeat = 1.
    ENDFORM.
    MSK

    You can use HTTP Receiver to pass the data to the servlet that runs on the HTTP Server.  The servlet has already screen design logic written in HTML or jsp to display in HTML Table or so.  PI requires to just post data on the servlet of HTTP Server using HTTP Receiver. PI will not create screen look and feel logic while posting data.
    If you want HTML table coding logic refer this link
    http://www.w3schools.com/html/html_tables.asp

  • Need Help with giving Colors to Table Cells and Table Borders in Dreamweaver CC - Please!

    Hi,
    I am a teacher and use Dreamweaver CC to make my class web page.
    How do I give colors to the cell borders of a table I inserted?  How do I give colors and line thickness
    to table borders, too?
    I bought the David Powers DVD and it doesn't show that.
    Please help.
    Thank you,
    John

    Assuming that you have placed a table in your document and your CSS Designer panel is open
    1. Click the '+' sign
    2. Choose your option. I will choose 'Define in Page'
    3. Follow the above sequence, 1.click on table, 2.ensure table is selected, 3.click on style, 4.click the '+' sign, 5. see the selector appear.
    4. Click on the selector and choose the required Properties.
    You can do the same for the row (<tr>) or a cell (<td>). In fact, this is how you would go about styling anything in your document.

  • Ms word tables borders and shading

    I'm using the "word tables borders and shading.vi" and trying to put a border around the first row including between columns and the "inside line style" active x function in the word_set_table_borders.vi is being ignored. The file is attached. Open the library and run the word table.vi. You will have to create test.doc on the root directory on the hard drive. Any suggestions?
    Attachments:
    wordtable.zip ‏1362 KB

    I ran your code and it worked fine. The top row of the table had a darker rectangle around it. I did have problems opening the file and it crashed my LV at first. I suspect there may be a corruption in the binary executable of the VI. Try pressing control-shift-run arrow on your top level VI to force LabVIEW to rebuild the binary executable of the VI.

  • HTML Printing with JEditorPane table borders is missing...

    Hi,
    My application prints HTML reports that was rendered on a JEditorPane,
    actually the printing is working fine (almost)...
    After reading a lot of posts and the Printing API i've found a very god aproach to print HTML documents... the DocumentRenderer:
    http://www.fawcette.com/javapro/2002_12/online/print_kgauthier_12_10_02/
    I'm having a strange problem that I was unable to figure out by myself...
    Table borders and table background images never get printed...
    ex: <TABLE BORDER=1 ...
    <td background="image.gif" ...
    On the JEditorPane it shows just fine but, when the page is printed there's no border or table background pictures...
    Everything else is printed ok including images, small fonts, etc...
    Does anyone else had the same problem ?
    Thanks for any help

    The borders present an interesting problem created by the way the DocumentRenderer class finds for printable Views in the HTML. DocumentRenderer searches recursively down the tree of Views starting with the Document's root view looking for leaf views, those with no children. The DocumentRenderer only paints these smallest chunks of text to the printer graphics context. This usually works because leaf views do not usually contain anything paintable.
    The problem with borders is that they represent paintable areas of branch views, those with children. When we only print leaf views, these areas get ignored.
    I see two logical solotions to the problem:
    I. Change the code of the recursive printView method of Document Renderer to print any border that intersects with the current printable clip rectangle.
    II. A much more elegant solution would be to print any view, branch or leaf, that fits within the current printable area, and cease the recursion there. This would include the borders.
    It would also increase efficiency by terminating the recursive method earlier by painting larger chunks of the HTML. A strange problem pops up when I try this, however. When the size of the chunk to be printed gets too big, nothing is printed at all. In the article this is mentioned in the area of large images. "Lastly, large icons do not print. Java simply refuses to render them on the page. Small icons work quite well, however." The same holds true for any large View.
    I have not been able to quantify the exact size where this failure occurs, nor what is causing it. If anyone can tell me what causes this problem, it should be fairly easy, depenging on the cause of the problem, to rewrite the class to print borders and also does lots of other good stuff. I have already coded the new and improved printView method, but this size limitation has made it unworkable.
    Simply stated, if I can figure out why the class does not print large icons, the rest should be easy.
    Any suggestions would be appreciated.
    Thanks,
    Kei Gauthier

  • Formating Bold Table Borders in a report template

    I'm using the Alternating-Color-Rows template in my reports. Is it possible to group columns together using thicker table borders after specific columns. How would you set this up in the template? e.g.
    | | || | | || | | ||
    | | || | | || | | ||
    | | || | | || | | ||
    etc...
    Paul P

    You do NOT save formatting to a CLOB type column, hence the C lob (Character). If you want to save a Word style document to a column, then look at a Blob (Binary)..
    Thank you,
    Tony Miller
    Webster, TX
    What if you really were stalking a paranoid schizophrenic... Would they know?

Maybe you are looking for

  • Is it really true that Final Cut Express cannot import full HD footage?

    I have seen a comment on the Apple store website for Final Cut Express saying that FCE cannot import 1940 1080/ 60i/24p/30p frame rates, converting them to a degraded 1440 1080 14p instead! I have bought a Canon HF100 on Ebay, and it is shipping from

  • Making an rxvt-unicode (urxvt) cursor act the same as a console cursor

    Is there a way to emulate the exact same cursor behavior in urxvt as one would find on the Linux console (i.e. not under X11). I am used to working at the console and in this environment, the cursor is a blinking underscore by default.  However, it's

  • Cash and liquidity report FF7A and FF7B

    Hi all Here i am executing FF7A and FF7B report, for cahs and liquidity postion in that reports i am getting banks and persons items, when i double click on persons systme is showing only F1 level details, How to get defferent level in persons items

  • ESS Career and JOB  error in DSM and SSO

    Hi All, I have installed ECC in WAS 6.4. All other pages are working except career and job. When I am clicko on JOB search then I am getting a popup saying : <b>Session Management</b> will <b>not</b> work ! Please check DSM log for details. You can t

  • TMP programs

    Hi, would like to know how to access my older Programs that i stored in TMP Logical database? I can't remember all of the names of my previous programs, and would like to access to some of them. How can i find them? Please help!