Table border color?

In GoLive CS, my GoLive Help no longer works with Snow Leopard. So I'm posting here to ask how to make a table border a color, or is it black only? I've checked the Color box next to the Border field and selected a color, but the border stays black. Thanks.

The color in the Inspector is for the table background, not the border.
You may want to explore CSS table borders.
If you are set on a non-CSS approach, nest one table within another with one row, one column. Color the outside table's background and set the inside table to have some cell spacing.

Similar Messages

  • Table border colors & Firefox/Safari

    I've noticed that when I set a table border color (using the
    Property Inspector), the color displays only in IE. Firefox and
    Safari do not display the border color like IE does. Why is this?
    How do I work around this--CSS?

    "csbridges" <[email protected]> wrote in
    message
    news:eushlq$5q7$[email protected]..
    > Yeah, that's what I thought. Thanks.
    >
    > Any idea, though, why FF doesn't recognize the HTML
    table border-color?
    > Seems odd that it wouldn't recognize this.
    Firefox recognises:
    .table {border: 1px solid #black}
    black being the border color.... so not sure why you say that
    it doesn't
    recognise it :)
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au
    ~ Forum Posting Guidelines ~
    http://www.adobe.com/support/forums/guidelines.html
    CSS Tutorials for Dreamweaver:
    http://www.adobe.com/devnet/dreamweaver/css.html

  • HTML Editor Table border colors, JavaScript Integration

    Hi,
    i have two questions regarding the HTML Editor in KM:
    1) How can I change the border color from tables?
    I have tried to change it with the adjustment from Tables
    in Theme Editor, but nothing happens.
    2) Can I add JavaScript Coding in HTML-Editor?
    For example to create icons with navigation (back, home)
    or print function.
    Thanks in advance
    Sascha

    Hi Sascha,
    You might be using the HTML Editor in KM for a particular KM Document right?
    Anyways, regarding question 1 you can change the border color of a html table using the bordercolor attribute e.g. bordercolor = "red"
    Regarding question 2, Yes you can add javascript code to your html; but please use the Text editor; its reliable in these matters.
    Regards,
    Prem.
    SAP GDC.

  • How to change table border color in DW CS6

    I need to know how to change the color of the border around my tables in Dreamweaver CS6. I saw a article on how to change it on http://forums.adobe.com/message/4451812, but i really couldnt follow because im just starting out using dreamweaver and i dont know anything about code. Is there a simple way to change the border color or can you give me a basic step process on how to change the border color in the code?

    Just an FYI, nobody uses Table-based layouts anymore.  It's much better to use CSS for layouts.  Only use tables for tabular data like spreadsheets and charts.
    Dreamweaver has a bunch of pre-built CSS Layouts for you to use as starter pages.  Just go to File > New > Blank page > HTML.  Pick a layout from the 3rd panel and hit Create button.  See screenshot below.
    Nancy O.

  • Table Border Colors Not Corresponding to CSS

    Having an issue with tables not displaying their designated border colors. I think something is over-riding in CSS, but don't know how. Here is the page. I've assigned it a new class w/background-color, but it's not showing up - - just transparent borders. Thoughts?
    .table{
    display:inline;
    border-color:#000000}

    seanmc81 wrote:
    That worked for the border, thanks. Although I'm trying to get each cell outlined in #000000 as well. Would i assign something like
    border-right-color: 1px solid #000000;
    border-left-color: 1px solid #000000}
    as well?
    .table {
    border-collapse: collapse;
    .table td {
    border: 1px solid #000;

  • Border Color in CS5 - Gone?

    I just installed CS5.  What happened to the color picker for table border color.  I see the background color picker but no border color picker?  Is there somewhere in preferences or something to find this?  If not, is there an extension that can be added? 
    Thanks

    The border-color attribute is not a part of HTML and has never been, even though some early browsers chose to support it.  DW is now very focused on writing valid HTML in your pages, hence its removal.  As Ken suggests, the proper way to style any element's borders is to use CSS.

  • Gridview Border color issue in IE10

    Hi,
    I am facing an issue in IE10(Version: 10.0.9200.17116, Update Versions: 10.0.21 (KB2987107)).
    when I try to render a grid view, the borders of the cell are not in proper color.
    The grid view is applied black border for cells and text color of grid cell is Red and Yellow on alternate row. But the border color of the grid view cell gets mixed with the text color inside the cell  and applied black border.
    You can see my post on (http[:]//forums[dot]asp[dot]net/t/2024404.aspx)
    Please let me know a suitable solution for the issue.
    Regards,
    Salman

    Hi,
    I noticed that you're using IE10(Version: 10.0.9200.17116, Update Versions: 10.0.21 (KB2987107)).As Robear mentioned in the first reply, we recommend to install the latest update KB 3008923 for IE to have a best performance.
    Have you checked the application code with F12 developer tool, then change the user agent string below Internet Explorer 10 as a test?
    I've checked the link you posted in the asp.net forum, seems you're trying to delelop a web application in IE, I'm not a developer, but I found some useful links
    some guys recommend css instead of html and others point a direction of tables inheritance
    http://stackoverflow.com/questions/16803844/border-colours-in-ie10-incorrect-all-other-browsers-ok
    https://social.msdn.microsoft.com/forums/ie/en-us/c3797399-3571-48e8-8d09-b771a9665109/ie10-incompatible-on-table-border-design
    NOTE
    This
    response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you.
    Microsoft
    does not control these sites and has not tested any software or information found on these sites.
    Yolanda Zhu
    TechNet Community Support

  • FF not showing table border style

    I have a webpage with css table border style dotted. It shows up in IE but there is just a line around the table in FF. Is there a way to make it show up? Many thanks.
    table.mytable {
    border-width: 6px;
    padding: 15px;
    border-style: dotted;
    border-color: #88aa96;}

    You need that } after background-color:#e8e5da;
    By removing it you introduced another error:
    <blockquote>Warning: Expected declaration but found '.'. Skipped to next declaration.
    Source File: http://www.cbrundage.net/cleeve/nature.htm
    Line: 33
    </blockquote>
    <pre><nowiki>table.mytable {
    border-width: 6px;
    padding: 15px;
    border-style: dotted;
    border-color: #88aa96;
    background-color:#e8e5da; /* missing } /*
    .back td{background-color:#e8e5da;
    </nowiki></pre>
    Instead of background-size you probably mean background-position:
    <blockquote>Warning: Unknown property 'background-size'. Declaration dropped.
    Source File: http://www.cbrundage.net/cleeve/nature.htm
    Line: 15</blockquote>
    <pre><nowiki>background-attachment:fixed; background-size: 100% 100%;
    </nowiki></pre>

  • HTML table border

    is there a way to change the border color of a table to match the background color of the table? something besides white. thanks.

    I still can't get the inside border to match. here is my code:
    <html>
    <body>
         <table width="760px" border="1" bordercolor="#99CCFF" bordercolorlight="#99CCFF" bordercolordark="#99CCFF" cellpadding="0" cellspacing="0">
              <tr bgcolor="#6699FF">
                   <td width="40px"></td>
                   <td colspan="3"><font size="+2">Optics</td>
                   <td></td>
              </tr>
              <tr bgcolor="#99CCFF">
                   <td width="40px"></td>
                   <td width="600px"> </td>
                   <td width="150px"valign="top">
                        no inputs for Optics at this time.
                   </td>
                   <td width="40" bgcolor="#99CCFF"> </td>
              </tr>
         </table>
    </body>
    </html>
    there is a small, white, outline on the left of my table. i tried setting the border to "0" but the line is still there. Maybe there is a way to increase the cellpadding on only the far left and right so i wouldn't need the extra columns?

  • On value selected in dropdown, set border and border color to subform

    Ok, I'm busy creating a form which has a dropdown field. There are five values inside the dropdown. I also have four subforms which contain tables and fields for each option in the dropdown except the first one. Now I want to set the border and border colour of the subform when the right value is chosen.
    In the exit part I created the code as follows:
    if (this.rawValue == "5"){
         this.resolveNode("TextfieldName").presence = "visible"; //This sets a text to visible...works like a charm
         Optie1.ui.oneOfChild.border.color.value = "255,153,0"; //After an example I found from Niall
         Optie1.ui.oneOfChild.border.color.thickness = "0.0200in";
    I changed this into Optie1, that's the name of the subForm. Somehow it doesn't apply it on the subform. I know I'm doing something wrong, but can't quite find what I want on the forums. Anyone any idea on this?

    Okay, managed to solve this myself by playing around a bit with the code.
    It should be:
    Optie1.border.edge.color.value and Optie1.border.edge.thickness.

  • How do I change an image border color to another color - Dreamweaver CS5?

    Good day,
    I have just learned how to add a border to an image with Dreamweaver CS5 within the Properties Inspector.
    After typing the width in pixels in the Border Text Field and pressing the Enter key, Dreamweaver created a black border.
    How do I change the image border color to another color?

    I added your suggested rule to the Style Sheet "in any order" as you explained. See the image below.
    However this did not change the image border from black to light blue. In fact, nothing changed.
    Nothing changed because the CSS that has been written into DW is incorrectly written.
    You want the following (exactly as written below)
    img {border: 4px solid #0062C8;}
    You've inadvertently wrapped the rule inside a #main_image container rendering it meaningless.
    It's easiest to go into Code View and change
    #main_image {
         img {border: 4px solid #0062C8;
    to
    img { border: 4px solid #0062C8; }
    The Property Inspector added a border exactly as I wanted it, other than the color I wanted the border to be. What is the use of this function in Property Inspector if it can add a border within Property Inspector but not let me change the COLOR of the black border that Property Inspector added, to another color?
    That's a deceptively simple, yet valid, question with a long answer.
    Back in the dark old days of web design web designers were restricted to inline HTML formatting which offered  border properties but no colors.
    CSS styling offers colors and more but has to be written differently.
    These days. it's best to avoid HTML formatting. Unfortunately border="4px" in the PI still allows it. But does not permit color.
    Does anyone else out there ever add color borders to their IMAGES (not the containing box for the image) ?
    Yes, using CSS.

  • Table border is not over-riding cell formatting

    I'm using InDesign CS4. I've created a table and styled it with a Table Style which uses several cell styles. I have specified a table border in Table Setup, but it does not appear on my table. It maintains the formatting in the cells. "Preserve Local Formatting" is grayed out, so I cannot select or deselect it. The only way to get the border to show up is to manually apply a stroke using the Stroke palette. I do not want to use this solution. I want it to work in the Table Style.
    A similar problem was posted but not answered here: http://livedocs.adobe.com/en_US/InDesign/5.0/help.html?content=WSa285fff53dea4f86173837510 01ea8cb3f-6fbf.html
    Please help!

    Here is a useful bit of info from the InDesign CS4 online help:
    Formatting precedence in styles
    If a conflict occurs in formatting applied to a table cell, the following order of precedence determines which formatting is used:
    Cell style precedence
    1. Header/Footer 2. Left column/Right column 3. Body rows. For example, if a cell appears in both the header and the left column, the formatting from the header cell style is used.  
    Table style precedence
    1. Cell overrides 2. Cell style 3. Cell styles applied from a table style 4. Table overrides 5. Table styles. For example, if you apply one fill using the Cell Options dialog box and another fill using the cell style, the fill from the Cell Options dialog box is used.
    Mike Witherell in Maryland

  • I have never used my mac for desktop publishing before and am having some problems.  This sounds really dumb, but I can't figure out how to put a border around a text box.  Also, how do you edit the border, i.e. border color, thickness, etc. Help!

    I have never used my mac for desktop publishing before and am running into some real problems.  How do you put a border around a text box?  Can you edit the border - color, thickness, etc.?  Help!

    I think the best solution is to read Pages documentation, go to Help and you have a long list of options. Pages is capable of quite sophisticated things, some features are above Nisus or Mellel, so it is not so simple to summarize things in a few lines.

  • Table border thickness in PDF

    Hi All,
    I have developed a report which contains multiple tables. The table borders are
    rendered with different weights(thickness) in PDF output. In the RTF output the table
    border is of the same thickness. In PDF, this issue is also found the cell border also.
    Please let me know if there is an option to avoid this.
    Thanks in advance,
    Sandesh

    Hi Sandesh,
    Does the output still look incorrect once the report has been printed. Something else to consider is if you are using nested tables, and both the inner and outer tables have a border set, in the PDF the lines will double up, but it will look fine in an RTF.
    If this is the case, then the solution is to take the border off either the inner or outer table.
    I hope this helps.
    Regards,
    Cj

  • How we can change JFrame Border Color Not Background.

    How we change jframe border color not background
    if any body know about that then plz tell me
    at this [email protected]
    i m thanksfull to ..... .

    hi Shafr
    beleive it or not, i got it using trial and error. i keep
    trying words in the function setStyle until the color changed. i
    dont know why it is not documented.
    var periodBarColor:SolidColor = new
    SolidColor(taskSchedColorChooser.selectedColor, 1);
    periodBar.setStyle("fill",periodBarColor);
    //where taskSchedColorChooser is colorPicker component. you
    can replace it by any color you want

Maybe you are looking for

  • Itunes wont launch after update

    After updating Itunes the application will not launch

  • Need Help in Dreamweaver CS3

    I so desperatly need help with using creating Websites. First of all I should let you know that I was placed in this position becuase the girl before me quit and they had no one else to take over. Dont get me wrong I really do like the software but I

  • Wait for progressbar to finish then continue code?

    How would you create a program where you have to type a number in numericupdown which will change the progressbar's value number and then click button1. When click button1 you will be navigated to google.com and then progressbar will start. when prog

  • Notifications Not Showing Up in iCal

    I have notifications set up in iCal to display 15 minutes before the event, but for some reason they are not showing up. My calendars are currently being synced with Google's Caldav servers, but even when I try to do it on a local calendar, the notif

  • Dropping first product from vendor punch-out catalog

    Hi, We are having classic scenario implemented with GOA on SRM server 5.5 and support pack 9 with CCM2.0. Currently we are facing an issue for one vendor punch-out catalog. When we are choosing multiple products from vendor catalog,it is dropping fir