My background color selector doesn't appear in cell properties DW cs6

I have in the past been able to change my table cell background color in dreamweaver cs6, for some reason in this new site i am working on, the properties panel doesn't show the option anymore.
What am I overlooking?
Thanks for looking

Be aware that the use of the bgcolor attribute (both for table and td tags) is deprecated meaning that browsers are no longer expected to support them. As Nancy O suggests, use CSS instead. It won't hurt you!
(Edit: This post was in response to OP, not to Web Magi as shown)

Similar Messages

  • How to add round image inside the table column? with different background color, column value should appear in the middle of the round portion.

    Hi
    This question is related to table component implementation.
    I want to display the column values inside the small round image with different colors and value should appear in the middle.

    Hi,
    >>1. how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    2. how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    3.how to make my column headers in bold?<<
    I’m sorry for the issue that you are hitting now.
    This itextsharp is third party control, for this issue, I recommended to consult the control provider directly, I think they can give more precise troubleshooting.
    http://sourceforge.net/projects/itextsharp/
    Thanks for your understanding.
    Regards,
    Marvin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How change back the title background color? All are appearing white and null too.

    When I put in the timeline all background titles, there are appearing white when the normal is black. When I open in Motion 5, there are all correct, color black. Background title black and words white. How can I resolve it?? Null is appearing white too.
    OS X 10.9.5
    FCPX 10.1.3

    Tom, thanks for help.
    I found it in Preferences - Player - Player Background.

  • Shake reduction doesn't appear in filter menu in CS6 for Mac, how do I get it?

    I downloaded and installed CS6 for Mac over the weekend. There is no shake reduction in the filters menu, under the shapen filters. I looked in several places for it and can not find it. I updated the software also and it still does not show. Does any one know why this filter is not in CS6 for Mac? How do I get it?

    These fetaures are only available in Photoshop CC (aka CS7), which will only become available beginning on June 17.
    Mylenium

  • How to control background color of table cell in an html report?

    I am using Labview 6.1 to generate a report.  In that report there is a table created using the Append Numeric Table to Report VI.  I want to be able to programmatically control the background color of each cell in the table.  Also, how can I programmatically control the background color of the row and header cells of the same table.  I am also generating a second table in the same report using the Append Text Table to Report VI and I would like to programmatically control the background colors of the cells in that table as well.  Thanks.

    Hi epsilon-d...,
    i´m not sure if there is an ready to use function to do what you want, but you can enlarge the available function. Open the "Append Numeric Table to Report.vi" and go to the HTML Case. There you can see another vi which creates the html table. In the VI "HTML Report Table Row" you can add the option: bgcolor="your color" inside of the "TR" tag.
    Hope it helps.
    Mike

  • Background color change of a column in Advance table

    Hi,
    We have requirement to change the background color of column in advance table based on some condition. We tried putting code to change background color in Custom.xss using background-color property and setting newly created css dynamically based on condition but it seems it only changes the background color of text not the complete cell. We want to change the color of complete cell in an advance table.
    Please let me know if there is any other way I can achieve this requirement. Any help would be highly appreciated.
    Thanks

    <FONT FACE="Arial" size=2 color="2D0000">
    Pls look into "Alter Table"section.
    LOB_storage_clause
    This might help
    -SK
    </FONT>

  • JTable cell background color

    Hi All,
    I want to change the background color of the same of the cells in jTabel. How can I do that.
    Like, I want to keep 3 cells in red color. Another 2 cells in in green color, And keep other cell background color to default.
    Also I want to change the background color of the cell, with different selection in other component(like jTree, jList).
    Thank you,
    Avin Patel

    The same cell renderer is used by all cells of the table. You can't just set the background color of a cell once. You have to reset it every time the cell renderer is called (depending on which row/column you are being asked to render). Here is an example:
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.table.*;
    public class TableCell extends JFrame
         JTable table;
         public TableCell()
              Object[][] data = { {"1", "A"}, {"2", "B"}, {"3", "C"}, {"4", "D"}  };
              String[] columnNames = {"Number","Letter"};
              DefaultTableModel model = new DefaultTableModel(data, columnNames);
              table = new JTable( model );
              //  Set default cell renderer
              TableCellRenderer renderer = new TestRenderer();
              table.setDefaultRenderer(Object.class, renderer);
              JScrollPane scrollPane = new JScrollPane( table );
              getContentPane().add( scrollPane );
         public static void main(String[] args)
              TableCell frame = new TableCell();
              frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
              frame.pack();
              frame.setVisible(true);
         class TestRenderer extends DefaultTableCellRenderer
              public Component getTableCellRendererComponent(
                   JTable table,
                   Object value,
                   boolean isSelected,
                   boolean hasFocus,
                   int row,
                   int column)
                   super.getTableCellRendererComponent(table,
                   value, isSelected, hasFocus, row, column);
                   if (column == 0)
                        setHorizontalAlignment( LEFT );
                        setBackground( Color.blue );
                   else
                        setHorizontalAlignment( RIGHT );
                        setBackground( Color.green );
                   if (row == 1)
                        setBackground( Color.red );
                   return this;
    }

  • Seting jtextfiled background color which is added in jtable

    hello all,
    i trying to added a jtextfield with forground color in a table.
    the problem is when click the cell it shows a color after it wont.
    i try use cellrender but i didt get the result.
    import java.awt.Color;
    import javax.swing.DefaultCellEditor;
    import javax.swing.JCheckBox;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.JTextField;
    import javax.swing.table.DefaultTableModel;
    import javax.swing.table.TableCellEditor;
    public class ButtonInTable extends JFrame{
         public ButtonInTable(){
              Object[][] data =
                   {"Color", "Red", new Boolean(false)},
                   {"Shape", "Square", new Boolean(false)},
                   {"Fruit", "Banana", new Boolean(false)},
                   {"Plain", "Text", new Boolean(false)},
                   {"Plain", "Text", new Boolean(false)}
              String[] columnNames = {"Type","Value","Integers"};
              DefaultTableModel model = new DefaultTableModel(data, columnNames);
              JTextField jbt = new JTextField("hello");
              final DefaultCellEditor dce = new DefaultCellEditor( jbt );
              jbt.setBackground(Color.RED);
              JTable table = new JTable(model){
                   public boolean isCellEditable(int row, int col){
                        return true;
                   public Class<?> getColumnClass(int col){
                        if(col == 2)
                             return Boolean.class;
                        else
                             return super.getColumnClass(col);
                   public TableCellEditor getCellEditor(int row, int column){
                        if(column == 1) {
                             return (TableCellEditor) dce;
                        } else {
                             return super.getCellEditor();
              JScrollPane jsp = new JScrollPane(table);
              getContentPane().add(jsp);
              pack();
              setVisible(true);
              setDefaultCloseOperation(EXIT_ON_CLOSE);
         public static void main(String args[]){
              new ButtonInTable();
    }thanks
    daya

    I don't understand your question. I don't know why you think clicking on a cell will change its background color. If you want the cell to change color then your TableModel to keep information about the color of the cell and then you need a renderer to use that information to display the color. Read the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/components/table.html#editor]How to Use Tables for an example of this.

  • Custom color field in color selector for header background doesn't work

    Custom color field in color selector for header background doesn't work

    Hi,
    I'm unable to reproduce this issue. Are you able to apply a custom color elsewhere within the form?
    Regards,
    Brian

  • Indesign problem : background color don't appears in the pdf...

    Hello,
    When I export the document to PDF, the background color doesn't appears in the pdf.
    I'm a new Indesign user. Ihave searched every where, but i have not found  tutorial about this problem...
    EM2C

    How did you implement this "background color"?
    If, as I suspect, you changed the [Paper] swatch, then you aren't seeing a malfunction. That swatch is non-printing, and will not show up anywhere but in the InDesign editing environment. To add a color in the background, you must actually fill an object with the color and position it behind the rest of the elements in your layout.

  • tr misbehaving (background color doesn't span the tr

    Isn't it wierd how intractable problems seem to solve themselves when you finally give up and ask for help...
    I just noticed that the css for the table '#maintable' was set to  'display: block;'
    I removed that specification and the table started to behave appropriately.
    I posted this message anyway in case someone else runs into the problem.
    The problem page validated with DW CS4 (code), BBedit (syntax), W3C (code, css, links)
    The row was set to bgcolor="#333300" but the background only covered part of the row.
    It acted as though there was a smaller table within a larger table, but there was only one table!
    The table was set to
    <table width="750" align="center" id="maintable">
    The css is posted below the following URL and html code...
    http://www.natlassoc.com/new/tracer/forms.htm
    HTML:
    <tr bgcolor="#333300">
            <td valign="top"><h1 class="style2">NAM wants to help you<br>
                    So does your Attorney General <br>
                    and the Federal Trade Commission (FTC) </h1>
                <p align="center" class="style2">The biggest difficulty we have is that many people say they have a problem <br>
                - but do not follow through and file a  complaint.</p>        </td>
        </tr>
    The CSS:
    #maintable
        border: 15px outset #606000;
        background-image: url(../pics/Parchment.jpg);
        display: block;
        margin: auto;
        padding: 10px;
    .style2 {color: #FFF}
    Thanks for listening to me talk to myself (and the choir).
    Dan H.

    I just noticed that the css for the table '#maintable' was set to  'display: block;'I removed that specification and the table started to behave appropriately.
    I posted this message anyway in case someone else runs into the problem
    <table> is already a block tag, so the style should make no difference at all.
    The row was set to bgcolor="#333300" but the background only covered part of the row.
    It acted as though there was a smaller table within a larger table, but there was only one table!
    The table was set to
    <table width="750" align="center" id="maintable">
    The css is posted below the following URL and html code...
    http://www.natlassoc.com/new/tracer/forms.htm
    HTML:
    <tr bgcolor="#333300">
            <td valign="top"><h1 class="style2">NAM wants to help you<br>
                    So does your Attorney General <br>
                    and the Federal Trade Commission (FTC) </h1>
                <p align="center" class="style2">The biggest difficulty we have is that many people say they have a problem <br>
                - but do not follow through and file a  complaint.</p>        </td>
        </tr>
    The CSS:
    #maintable
        border: 15px outset #606000;
        background-image: url(../pics/Parchment.jpg);
        display: block;
        margin: auto;
        padding: 10px;
    .style2 {color: #FFF}
    The 10px padding is applied to the <table> tag.  But a <table> doesn't have padding, although Firefox seems to think it does.  Only the cells within the table have padding or spacing.  I suggest you find another way to do this.  By the way, you need to give your 'tooltip' layers a background color.  And you don't need the overflow style on them.

  • JTabbedPane background color doesn't work in Win XP - SP 1 with JRE 1.4.2

    Setting background color for JTabbedPane doesn't
    work in "Windows XP with SP 1" when using JRE 1.4.2.
    For example, following call doesn't set the
    tab to green:
    tabbedPane.setBackgroundAt(0, Color.green);
    It always displays TABS with the white background.
    Is anybody aware of this problem?
    Thanks-in-advance for any help / suggestions!
    Sundar

    Thanks, bbritta and vairavan.
    I tried setOpaque also, but still doesn't work,
    On my system also:
    UIManager.getSystemLookAndFeelClassName() = com.sun.java.swing.plaf.windows.WindowsLookAndFeel
    I have given below the sample code that doesn't display tab color. Please let me know if you suspect something is wrong here, or any suggestions to make this work under Windows XP - Service Pack 1.
    Thanks,
    Sundar
    // CODE STARTS HERE
    import javax.swing.JTabbedPane;
    import javax.swing.ImageIcon;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JFrame;
    import javax.swing.JOptionPane;
    import javax.swing.UIManager;
    import java.awt.*;
    import java.awt.event.*;
    public class TEMP_TABBED_PANE extends JPanel {
    public TEMP_TABBED_PANE() {
    JTabbedPane tabbedPane = new JTabbedPane();
         tabbedPane.setOpaque(true);
    Component panel1 = makeTextPanel("Howdy");
    tabbedPane.addTab("One", panel1);
    tabbedPane.setSelectedIndex(0);
    tabbedPane.setBackgroundAt(0, Color.green);
    Component panel2 = makeTextPanel("Howdy Howdy");
    tabbedPane.addTab("Two", panel2);
    tabbedPane.setBackgroundAt(1, Color.yellow);
    Component panel3 = makeTextPanel("Howdy Howdy Howdy");
    tabbedPane.addTab("Three", panel3);
    tabbedPane.setBackgroundAt(2, Color.red);
    Component panel4 = makeTextPanel("Howdy Howdy Howdy Howdy");
    tabbedPane.addTab("Four", panel4);
    tabbedPane.setBackgroundAt(3, Color.cyan);
    //Add the tabbed pane to this panel.
    setLayout(new GridLayout(1, 1));
    add(tabbedPane);
    protected Component makeTextPanel(String text) {
    JPanel panel = new JPanel(false);
    JLabel filler = new JLabel(text);
    filler.setHorizontalAlignment(JLabel.CENTER);
    panel.setLayout(new GridLayout(1, 1));
    panel.add(filler);
    //panel.setOpaque(true); <<-- UNCOMMENTING THIS ALSO DOESN'T HELP :(
    return panel;
    public static void main(String[] args) {
    JFrame frame = new JFrame("Tabbed Pane Demo for Color");
    try {
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    // UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
    JOptionPane.showMessageDialog(frame,
              "UIManager.getSystemLookAndFeelClassName() = " +
              UIManager.getSystemLookAndFeelClassName(),
              "Look And Feel",
              JOptionPane.INFORMATION_MESSAGE);
    catch(Exception e) {
    e.printStackTrace();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {System.exit(0);}
    frame.getContentPane().add(new TEMP_TABBED_PANE(),
    BorderLayout.CENTER);
    frame.setSize(400, 125);
    frame.setVisible(true);
    // CODE ENDS HERE

  • CSS -- background color doesn't show with scroll bar

    I have a nav bar with a background-color that shows up fine if the image opens to the right size.  If, however, the window opens small and I have to use the scroll bar to move things over, the color for the nav bar isn't there.
    Any thoughts would be appreciated.
    Here's the code:
    HTML:
    <body>
        <div id="Global">
            <div id="navHeader">
                <div id="navBar">
                    <ul class="navStyle">
                        <li>Home</li>
                        <li>Chamber Info</li>
                        <li>Event Galleries</li>
                        <li>Contact Us</li>
                        <li>Join</li>
                    </ul>
                </div>
            </div>
        </div>
    </body>
    CSS:
    @charset "utf-8";
    /* CSS Document */
        padding:0 0;
        margin:0 0;
    body{
        background-color:#f1eee3;
    #Global{ margin:0 auto;}
    #navHeader{
        width:100%;
        height:40px;
        margin:0 auto;
        background-color:#bfbfbf;
    #navBar{
        margin: 0 auto;
        width:960px;
        text-align:center;}
    .navStyle{
        font-family:"Eras Medium ITC",Arial, Helvetica, sans-serif;
        font-size:18px;
        padding-top:10px;
    .navStyle li{
        display:inline;
        padding-left:20px;
        padding-right:20px;

    Does this help?
    #navHeader{
    width:100%;
    min-height:40px;
    _height:40px; /**for IE6 only**/
    margin:0 auto;
    background-color:#bfbfbf;
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • Dreamweaver CSS div background color doesn't match .png menu button color on PC

    Hello,
    I created a menu with buttons the same background color (CSS) as the background color on my CSS template. However, for some reason, the colors don't look the same on mac and a pc. The background on the menu buttons that I created (.png) match the css template div background on a mac. But, when the site displays on a pc, the menu background color from the css template is darker than the .png background color, even though the color code is the exact same. On a mac, the .png background color matches the css div template color exactly. Anyone know what is going on or how to fix?
    I appreciate any assistance!

    Are both monitors calibrated?
    http://www.wikihow.com/Calibrate-Your-Monitor
    Windows renders images a tad darker.  To compensate, use Gamma Correction in Photoshop.
    http://www.photoshopsupport.com/tutorials/cb/gamma.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Firefox does not recognize the global "advanced appearance" background color setting although IE and all other apps seem to.

    The background color of the little mouseover info text boxes is a dingy manila (yellowish) with black text. How do you change this color? The color specs in XP seem to work most everywhere except Firefox.

    This works in modern CSS3 supporting browsers.  But not pre-IE9.
    http://alt-web.com/TEST/Resizable-BG.shtml
    Nancy O.

Maybe you are looking for