Webpage background color changed without me changing it.

The background color on my webpage changed and I dont think I did anything to the code.  I have tried several things to fix it but its stays gray.  It was a maroon color (#660000).  I have tried moving the <body bgcolor="#660000"> before and after the closing head tag, and changing the number for a new color.  Nothing works.  What is it Im missing?
The website is http://www.rumcnow.com.
Thanks in advance.
Lee

lee28382 wrote:
I have tried moving the <body bgcolor="#660000"> before and after the closing head tag, and changing the number for a new color.  Nothing works.
Random point and shoot rarely helps with web pages. It  just leads to invalid code and web pages which don't work.
See http://validator.w3.org/check?uri=http%3A%2F%2Fwww.rumcnow.com%2F&charset=%28detect+automa tically%29&doctype=Inline&group=0
Needs a little cleanup. Help yourself by learning a little HTML and CSS.
I suspect you've created a background color in the CSS file for your contact form and, by adding a link to that CSS file in your home page and moving the body tag to make it invalid, you've inadvertently overridden the BG color on the home page.
As a starting point, in the HTML file of the home page
change
</style>
<body bgcolor="#660000">
</head>
to
</style>
</head>
<body>
In the CSS file http://www.rumcnow.com/ContactForm.css
change
body {
background:#E9E9E9;
to
body {
background:#660000;

Similar Messages

  • LR brush sensitivity changing without me changing the settings

    I have a question about LR CC, in the brush tool, I have a preset that I use for lightening red spots on peoples faces. It works majority of the time, but every now and then the brush (without me changing the settings) becomes super sensitive and edits seriously overboard, I'm sure its something I'm doing without realising it, can you help me figure out this issue? Thank you, Regards Tanya

    Hello,
    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Changing background color in JTable, only changes one row at a time...

    I'm trying to change the color of rows when the 5th column meets certain criteria. I think I'm very close, but I've hit a wall.
    What's happening is the row will change color as intended when the text in the 5th column is "KEY WORD", but when I type "KEY WORD" in a different column it will set the first row back to the regular colors. I can easily see why it's doing this, everytime something is changed it rerenders every cell, and the listener only checks the cell that was just changed if it met the "KEY WORD" condition, so it sets every cell (including the previous row that still meets the condition) to the normal colors. I can't come up with a good approach to changing the color for ALL rows that meet the condition. Any help would be appreciated.
    In this part of the CellRenderer:
            if (isSelected)
                color = Color.red;
            else
                color = Color.blue;
            if (hasFocus)
                color = Color.yellow;
            //row that meets special conditions
            if(row == specRow && col == specCol)
                color = color.white; I was thinking an approach would be to set them to their current color except for the one that meets special conditions, but the two problems with that are I can't figure out how to getColor() from the table, and I'm not sure how I would initially set the colors.
    Here's the rest of the relevant code:
        public void tableChanged(TableModelEvent e)
            int firstRow = e.getFirstRow();
            int lastRow  = e.getLastRow();
            int colIndex = e.getColumn();
            if(colIndex == 4)
                String value = (String)centerTable.getValueAt(firstRow, colIndex);
                // check for our special selection criteria
                if(value.equals("KEY WORD"))
                    for(int j = 0; j < centerTable.getColumnCount(); j++)
                        CellRenderer renderer =
                            (CellRenderer)centerTable.getCellRenderer(firstRow, j);
                        renderer.setSpecialSelection(firstRow, j);
    import javax.swing.table.*;
    import javax.swing.*;
    import java.awt.Component;
    import java.awt.Color;
    public class CellRenderer extends DefaultTableCellRenderer
        int specRow, specCol;
        public CellRenderer()
            specRow = -1;
            specCol = -1;
        public Component getTableCellRendererComponent(JTable table,
                                                       Object value,
                                                       boolean isSelected,
                                                       boolean hasFocus,
                                                       int row, int col)
            setHorizontalAlignment(JLabel.CENTER);
            Color color = Color.green;
            if (isSelected)
                color = Color.red;
            else
                color = Color.blue;
            if (hasFocus)
                color = Color.yellow;
            if(row == specRow && col == specCol)
                color = color.white;
            //setForeground(color);
            setBackground(color);
            setText((String)value);
            return this;
        public void setSpecialSelection(int row, int col)
            specRow = row;
            specCol = col;
    }If I'm still stuck and more of my code is needed, I'll put together a smaller program that will isolate the problem tomorrow.

    That worked perfectly for what I was trying to do, but I've run into another problem. I'd like to change the row height when the conditions are met. What I discovered is that this creates an infinite loop since the resizing triggers the renderer, which resizes the row again, etc,. What would be the proper way to do this?
    Here's the modified code from the program given in the link. All I did was declare the table for the class, and modify the if so I could add the "table.setRowHeight(row, 30);" line.
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import javax.swing.border.*;
    public class TableRowRenderingTip extends JPanel
        JTable table;
        public TableRowRenderingTip()
            Object[] columnNames = {"Type", "Company", "Shares", "Price", "Boolean"};
            Object[][] data =
                {"Buy", "IBM", new Integer(1000), new Double(80.5), Boolean.TRUE},
                {"Sell", "Dell", new Integer(2000), new Double(6.25), Boolean.FALSE},
                {"Short Sell", "Apple", new Integer(3000), new Double(7.35), Boolean.TRUE},
                {"Buy", "MicroSoft", new Integer(4000), new Double(27.50), Boolean.FALSE},
                {"Short Sell", "Cisco", new Integer(5000), new Double(20), Boolean.TRUE}
            DefaultTableModel model = new DefaultTableModel(data, columnNames)
                public Class getColumnClass(int column)
                    return getValueAt(0, column).getClass();
            JTabbedPane tabbedPane = new JTabbedPane();
            tabbedPane.addTab("Alternating", createAlternating(model));
            tabbedPane.addTab("Border", createBorder(model));
            tabbedPane.addTab("Data", createData(model));
            add( tabbedPane );
        private JComponent createAlternating(DefaultTableModel model)
            JTable table = new JTable( model )
                public Component prepareRenderer(TableCellRenderer renderer, int row, int column)
                    Component c = super.prepareRenderer(renderer, row, column);
                    //  Alternate row color
                    if (!isRowSelected(row))
                        c.setBackground(row % 2 == 0 ? getBackground() : Color.LIGHT_GRAY);
                    return c;
            table.setPreferredScrollableViewportSize(table.getPreferredSize());
            table.changeSelection(0, 0, false, false);
            return new JScrollPane( table );
        private JComponent createBorder(DefaultTableModel model)
            JTable table = new JTable( model )
                private Border outside = new MatteBorder(1, 0, 1, 0, Color.RED);
                private Border inside = new EmptyBorder(0, 1, 0, 1);
                private Border highlight = new CompoundBorder(outside, inside);
                public Component prepareRenderer(TableCellRenderer renderer, int row, int column)
                    Component c = super.prepareRenderer(renderer, row, column);
                    JComponent jc = (JComponent)c;
                    // Add a border to the selected row
                    if (isRowSelected(row))
                        jc.setBorder( highlight );
                    return c;
            table.setPreferredScrollableViewportSize(table.getPreferredSize());
            table.changeSelection(0, 0, false, false);
            return new JScrollPane( table );
        public JComponent createData(DefaultTableModel model)
            table = new JTable( model )
                public Component prepareRenderer(TableCellRenderer renderer, int row, int column)
                    Component c = super.prepareRenderer(renderer, row, column);
                    //  Color row based on a cell value
                    if (!isRowSelected(row))
                        c.setBackground(getBackground());
                        String type = (String)getModel().getValueAt(row, 0);
                        if ("Buy".equals(type)) {
                            table.setRowHeight(row, 30);
                            c.setBackground(Color.GREEN);
                        if ("Sell".equals(type)) c.setBackground(Color.YELLOW);
                    return c;
            table.setPreferredScrollableViewportSize(table.getPreferredSize());
            table.changeSelection(0, 0, false, false);
            return new JScrollPane( table );
        public static void main(String[] args)
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
        public static void createAndShowGUI()
            JFrame.setDefaultLookAndFeelDecorated(true);
            JFrame frame = new JFrame("Table Row Rendering");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.add( new TableRowRenderingTip() );
            frame.pack();
            frame.setLocationRelativeTo(null);
            frame.setVisible(true);
    }Edited by: scavok on Apr 26, 2010 6:43 PM

  • LR5 - Can the PNG background color of white be changed?

    I recently decided to use LR to catalog all my images (instead of Bridge). I love that PNG is now supported. Ran into one problem...all the snowflake and white frame images are viewed as a white rectangle due to the background white. I know Preview and other "viewers" don't have this issue. ACDSee has a setting to change the background. Can I do this in LR5?  If not, is there a link where I can submit for a product enhancement to the Product Management team for a future release of LR?

    I had seen that post before I came here...where Julianne suggested people come. Unfortunetly, neither watermark nor identity plate are what I need. I have thousands of PNG files, and while all are not "white images" on LRs assigned white background for PNG files enough are that I made the above request. From your answer, and Julianne Kost's it sounds as if the white background for the PNG cannot be changed as a preference - to view these PNG files in Library Mode.
    Does anyone know the process, or have a link, to make a request for improvement to the products....

  • ADF data table - posting changes without row change

    Hi,
    I’m using JDevloper 11.1.2.3.0 to build a master detail page (for ex, departments and employees) where both master and detail are editable. So, I dragged and dropped the master data control (departments) on the page as an ADF table. Then I dragged and dropped the detail data control (employees) on the page as an ADF table (the detail control is the one inside the master data control). Each table is inside a panelCollection.
    At run time, the page displays fine and when I change the selected row in the master, the detail table changes correctly.
    In the toolbar of each panelCollection, I added:
    •     The createInsert operation of the corresponding data control.
    •     A “save changes” button to commit the changes: the button is not the commit action of the module but instead it is a toolbar button linked to a method in the bean that execute the commit operation (using the bindings) and then reload the master data control (both master and detail buttons points to the same action).
    This is also working: if I change a field in the master table or create a new row and click the “save changes” button of the master table the changes are correctly posted. Same for the detail table if I change a field in the detail table or create a new row and click the “save changes” button of the detail table the changes are posted.
    The problem is when I add a row in the detail table for ex and click the “save changes” button of the master table (without changing the selected row in the detail), the changes are not committed. Same happen if I create a new row in the master table and clicked the “save changes” button of the detail table (also without changing the selected row in the master).
    It seems that the problem is that the table is not posting the changes when I directly click the “save changes” button of the "other table". If after adding a new row, I change the selected row before clicking the “save changes” button data is correctly saved whatever “save changes button” is clicked.
    So how can I make the table post the changes is this case?
    Or should I make the “save changes” button of the master table for ex disabled when I change something in the detail table and vice versa? (If yes how? The disabled property of the “save changes” buttons is currently: #{!bindings.Commit.enabled})
    Or should I have only one “save changes” button that saves all the changes on the page?
    Or …
    Is there any useful link i can check?
    Thank you.
    Edited by: 997720 on Apr 3, 2013 2:28 AM
    Edited by: 997720 on Apr 3, 2013 7:36 AM

    this helped me very much: http://balusc.xs4all.nl/srv/dev-jep-dat.html
    Branislav

  • Consolidation group change without ownership change

    Hi All,
    I require help in resolving this particular issue.
    I have a company called 1000 which is having a subsidiary called 5010. both of the fall under the same consolidiation group called CG1.
    Now I have run the First consolidation as of March 2009 and carry forwarded the balances in 2009.
    Now 5010 has invested in 6 more companies and has become a holding company to them.
    Now I thought of two options
    1. To just create these 6 companies and enter the investment details for these companies and run the COI.
    2. To create a new consolidation group called CG2. Put the 5010 company along with its 6 newly acquired subsidiaries under this consoldation group.
    I ma exercising the option 2 by creating a new consolidation group as it will easy to get the reports at CG2 level.
    As you can observe there has been no transfer of investment happening here. How do i take care of such a situation.
    I read the posts regarding the Consolidation group changes but all posts were dealing with change in ownership happening. In my case there is no change in ownership as 1000 still continues to be the holding company. But only difference is that earlier 5010 was existing as a end node but now It has to have a consolidation group of its own where in it will have the holding company 5010 along with its 6 subsidiaries.
    Pl give me a solution.
    Thanks in advance.
    Shivaprasad

    facts of the scenario
    1. Did first consolidation in period 012.2008
    2. There is a company 5510 which belongs to CG1 as of first consolidation which was in period 012.2008
    3. 5510 has invested in 6 new companies in period 003.2009
    4. I want to create a new consolidation group CG2 and put the existing company 5510 along with 6 new companies under this group (client requirement)
    5. I created a new consolidation group CG2 and assigned the company 5510 to this group along with 6 new companies
    6. In consolidation group CG1 mentioned the divesture period as 003.2009 (DABP ticked) for 5510 company
    7. in Consolidation group CG2 mentioned the First consolidation period as 003.2009 (FCEP unticked) against 5510 company
    8. The figures are not accurate at the CG2 group level.
    Should I be doing anything else apart from the above steps.
    Will appreciate a fast reply as it is stopping the go-live
    Thanks in advance
    Shivaprasad

  • Firefox always prints webpage background color

    I have used two different computers and two different printers with same results. Printing works fine when printed from Internet Explore. Older versions of Firefox workfine. An example page is my home page http://www.dixonvision.com

    I have been printing from three different computers. All three with new installs of the latest versions of Firefox. Two of the three are new laptops running Windows 7, the third ia an old Windows XP desktop. All three have access to three network printers.
    I spent many hours last night working on this issue and I think I found the issue but I know of no way to fix it.
    I have low vision and so when using computers I set them into the High Contrast Mode. It is when the computers are in High Contrast Mode that Firefox prints the background of websites.
    This was never an issue in Firefox before version 4. Maybe a fix for this will be in the next build.

  • Voice changes without voice changer

    My friend has a problem whenever he calls me he always sound different like a chipmunk but i dont know he tried many stuff but nothing fixed any help maybe? He doesnt have any voice changers what so ever

    HI,
    The link also requires you to be able to Answer a Video Chat (so you need the Internet speed)
    It is also only about the iPhone and not the version of the Mac.
    Basically it does not help move things forward.
    Based on it's age I ignored the new Post.
    However if other people are also subscribed to the Thread like I am I can see more people returning in which case it needs some explaining.
    7:34 PM      Wednesday; September 4, 2013
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.4)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Problem with changing background colors in JPanels

    Hi,
    I have made an applet with Grid Layout and I have added JPanels in each grid. I have assigned a background color to all panels.
    Now what i am trying to do is, change the clicked JPanel's background color to "blue" on a mouse click and convert the previous changed JPanel's background to originally assigned color.
    This is the code that I have used:
    JPanel temp=null, m;
    String tempc, m_color;
    public void mouseClicked(MouseEvent me)
              m=(JPanel)me.getComponent();
              if(m!=temp)
              m_color=m.getBackground().toString();   // retaining current background color so as to change later
              m.setBackground(Color.blue);
                   if(temp!=null) 
                        temp.setBackground(Color.getColor(tempc));  // change back to original color
              tempc=m_color;       //tempc and m_color are Strings
              temp=m;               //temp and m are JPanels
         }When I am executing the above logic, background color changes to blue on a mouse click but the previously changed JPanel is not changing back to original color.
    Can anyone please tell where is the above logic going wrong??
    Thanks
    Rohan

    Hi Camickr,
    I tried to do it without changing Color to Strings but i was getting an error in the line temp.setBackground(Color.tempc);, so i decided to change it to String and retrieve it's value in the method.
    SSCCE for my code is:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.text.*;
    import java.lang.reflect.InvocationTargetException;
    <applet code="test" width=400 height=400>
    </applet>
    public class test extends JApplet
         JPanel t[][]=new JPanel[8][8];
         JPanel p[][];
         public void init()
         try{
         SwingUtilities.invokeAndWait(new Runnable()
              public void run()
                   t=makeGUI(8,8);
                   logic(t,8,8);
         }catch(InterruptedException e){e.printStackTrace();}
         catch(InvocationTargetException e){e.printStackTrace();}
    /* Board*/
    private JPanel[][] makeGUI(int rows, int cols)
        p = new JPanel[rows][cols];
        Container contentPane = getContentPane();
        contentPane.setLayout(new GridLayout(rows, cols));
        for (int i = 0; i < rows; i++)
          for (int j = 0; j < cols; j++)
            p[i][j] = new JPanel();
            contentPane.add(p[i][j]);
            if (i % 2 == j % 2)
              p[i][j].setBackground(Color.white);
              else
              p[i][j].setBackground(Color.darkGray);
         return p;
    private void logic(JPanel p[][], int rows, int cols)     
              for (int i = 0; i < rows; i++)
              for (int j = 0; j < cols; j++)
              final int k=i, l=j;
              p[i][j].addMouseListener(new MouseListener()
                   JPanel temp=null,m;
                   String tempc, m_color;
                   public void mouseClicked(MouseEvent me)
                        m=(JPanel)me.getComponent();
                        if(m!=temp)
                        m_color=m.getBackground().toString();     //retaining current background color
                        m.setBackground(Color.blue);
                        if(temp!=null)     // this method sets the panel
                             {               //     to its original color
                             temp.setBackground(Color.getColor(tempc));
                        tempc=m_color;     //color Strings
                        temp=m;          //JPanels
                   public void mouseEntered(MouseEvent me){}
                   public void mouseExited(MouseEvent me){}
                   public void mousePressed(MouseEvent me){}
                   public void mouseReleased(MouseEvent me){}
    }

  • How to change background color of text in pdf based by font name

    Hi
    How to change the background color of text in PDF based by font name. Is there any option in Javascript. e.g: If PDF containing ARIAL font, the ARIAL text background color needs to be changed in red color for all pages. Same for all fonts with different different color in the PDF.
    Thanks in Advance

    Hi
    1) Is there any possibilities to highlight with different color based on font using javascript
    2) list of font used in PDF using javascript
    3) How to hilight the text using javascript
    Thanks in Advance

  • Change background color of a selected line of text in textfield

    I have a list of items in a dynamic text field. When a line is clicked I would like to highlight it, or change the background color. Any ideas?

    By default, the generated application uses the oracle skin family. This skin generates the buttons as images with rounded edges so you cannot change the background color. If you change the skin-family to "minimal" in the adf-faces-config.xml, then you can change the background color of the buttons by adding a property like this to the button template:
    inlineStyle="background-color:red;"
    However, a cleaner way to do this, is by creating a custom skin, so you do not have to modify the generator templates at all. See the following link for more info on ADF Faces skinning:
    http://www.oracle.com/technology/products/jdev/101/howtos/adfskins/index.html
    In addition, using the Check for Updates feature in JDeveloper, you can install additional sample skins.
    Steven Davelaar,
    JHeadstart Team.

  • Bridge CS4: Changing preview window's background color

    How can I change the preview window's background color? (default is black) It happens that I have some black images with alpha (transparent background)  and being all black they blend with the preview window's background color. can this be changed?? I looked everywhere and the only thing I found is how to change bridge's appearance, but not the preview window's bg color. Thanx in advance

    Try changing the thumbnail style to HQ or ?, and see if that makes any difference.  In Quick thumbs it may not display layers.

  • Application background color changes after sometime

    Hi All,
    We have an R12.1.1 instance on solaris and we are facing a strange problem.
    The background color of the application changes to blue suddenly and the Users are not able to properly see the links which are in blue. If we bounce Apache, it comes back to normal but after sometime the problem comes back.
    Please check the below two pictures to understand exactly how the color change is happening.
    pic 1: normal color - http://www.esnips.com/doc/f9614bb5-cb07-4d8e-83bc-9aa234240a93/1
    pic 2: changed color - http://www.esnips.com/doc/d3a759e7-f628-4390-8690-36b05e361c66/2
    Kindly help me in getting this issue resolved.
    Thanks.

    Hi Helios, following are the messages in apache error log file immediately received after starting up the Apps services.
    [Mon Oct  4 06:25:20 2010] [notice] Oracle-Application-Server-10g/10.1.3.4.0 Oracle-HTTP-Server configured -- resuming normal operations
    [Mon Oct  4 06:25:20 2010] [notice] Accept mutex: fcntl (Default: fcntl)
    [Mon Oct  4 07:25:04 2010] [error] [client 172.16.1.136] [ecid: 1286162704:10.100.1.200:19224:0:10,0] File does not exist: /db2/orasp/inst/apps/PROD_oratdb/p
    ortal/favicon.ico
    [Mon Oct  4 07:26:29 2010] [error] [client 172.16.1.136] [ecid: 1286162789:10.100.1.200:18596:0:38,0] Directory index forbidden by rule: /db2/orasp/apps/apps
    _st/comn/java/classes/
    [Mon Oct  4 07:26:36 2010] [error] [client 172.16.1.136] [ecid: 1286162796:10.100.1.200:19349:0:3,0] File does not exist: /db2/orasp/apps/apps_st/comn/java/c
    lasses/oracle/forms/engine/RunformBundle_ar_AE.class
    [Mon Oct  4 07:26:36 2010] [error] [client 172.16.1.136] [ecid: 1286162796:10.100.1.200:19349:0:4,0] File does not exist: /db2/orasp/apps/apps_st/comn/java/c
    lasses/oracle/forms/engine/RunformBundle_ar_AE.properties
    [Mon Oct  4 07:26:44 2010] [error] [client 172.16.1.136] [ecid: 1286162804:10.100.1.200:19355:0:6,0] File does not exist: /db2/orasp/apps/apps_st/comn/java/c
    lasses/oracle/forms/engine/RunformBundle_ar_US.class
    [Mon Oct  4 07:26:45 2010] [error] [client 172.16.1.136] [ecid: 1286162805:10.100.1.200:19355:0:7,0] File does not exist: /db2/orasp/apps/apps_st/comn/java/c
    lasses/oracle/forms/engine/RunformBundle_ar_US.properties
    [Mon Oct  4 08:04:06 2010] [error] [client 10.10.111.1] [ecid: 1286165046:10.100.1.200:19356:0:24,0] Directory index forbidden by rule: /db2/orasp/apps/apps_
    st/comn/java/classes/
    [Mon Oct  4 08:04:09 2010] [error] [client 10.10.111.1] [ecid: 1286165049:10.100.1.200:19224:0:30,0] File does not exist: /db2/orasp/apps/apps_st/comn/java/c
    lasses/oracle/forms/engine/RunformBundle_ar_AE.class
    [Mon Oct  4 08:04:09 2010] [error] [client 10.10.111.1] [ecid: 1286165049:10.100.1.200:19224:0:31,0] File does not exist: /db2/orasp/apps/apps_st/comn/java/c
    lasses/oracle/forms/engine/RunformBundle_ar_AE.properties
    [Mon Oct  4 08:04:12 2010] [error] [client 10.10.111.1] [ecid: 1286165052:10.100.1.200:18595:0:55,0] File does not exist: /db2/orasp/apps/apps_st/comn/java/c
    lasses/oracle/forms/engine/RunformBundle_ar_US.class
    [Mon Oct  4 08:04:12 2010] [error] [client 10.10.111.1] [ecid: 1286165052:10.100.1.200:18595:0:56,0] File does not exist: /db2/orasp/apps/apps_st/comn/java/c
    lasses/oracle/forms/engine/RunformBundle_ar_US.properties
    [Mon Oct  4 08:46:00 2010] [error] [client 10.10.11.11] [ecid: 1286167560:10.100.1.200:19356:0:59,0] File does not exist: /db2/orasp/inst/apps/PROD_oratdb/po
    rtal/favicon.ico
    [Mon Oct  4 08:47:23 2010] [error] [client 10.10.111.1] [ecid: 1286167643:10.100.1.200:18598:0:93,0] mod_oc4j: There is no oc4j process (for destination: app
    lication://forms) available to service request.
    [Mon Oct  4 08:47:23 2010] [error] [client 10.10.111.1] [ecid: 1286167643:10.100.1.200:18597:0:126,0] File does not exist: /db2/orasp/apps/apps_st/comn/java/
    classes/oracle/ewt/alert/resource/AlertBundle_ar_US.class
    [Mon Oct  4 08:47:23 2010] [error] [client 10.10.111.1] [ecid: 1286167643:10.100.1.200:18597:0:127,0] File does not exist: /db2/orasp/apps/apps_st/comn/java/
    classes/oracle/ewt/alert/resource/AlertBundle_ar_US.properties
    [Mon Oct  4 08:51:45 2010] [notice] Oracle-Application-Server-10g/10.1.3.4.0 Oracle-HTTP-Server configured -- resuming normal operations
    [Mon Oct  4 08:51:45 2010] [notice] Accept mutex: fcntl (Default: fcntl)
    [Mon Oct  4 08:54:39 2010] [error] [client 172.16.1.75] [ecid: 1286168079:10.100.1.200:20307:0:5,0] Directory index forbidden by rule: /db2/orasp/apps/apps_s
    t/comn/java/classes/
    [Mon Oct  4 08:54:50 2010] [error] [client 172.16.1.75] [ecid: 1286168090:10.100.1.200:20660:0:3,0] File does not exist: /db2/orasp/apps/apps_st/comn/java/cl
    asses/oracle/forms/engine/RunformBundle_ar_AE.class
    [Mon Oct  4 08:54:50 2010] [error] [client 172.16.1.75] [ecid: 1286168090:10.100.1.200:20660:0:4,0] File does not exist: /db2/orasp/apps/apps_st/comn/java/cl
    asses/oracle/forms/engine/RunformBundle_ar_AE.properties
    [Mon Oct  4 08:54:53 2010] [error] [client 172.16.1.75] [ecid: 1286168093:10.100.1.200:20309:0:6,0] File does not exist: /db2/orasp/apps/apps_st/comn/java/cl
    asses/oracle/forms/engine/RunformBundle_ar_US.class
    ####################################################################################

  • Applications background color changes after sometime

    Hi All,
    We have an R12.1.1 instance on solaris and we are facing a strange problem.
    The background color of the application changes to blue suddenly and the Users are not able to properly see the links which are in blue. If we bounce Apache, it comes back to normal but after sometime the problem comes back.
    Please check the below two pictures to understand exactly how the color change is happening.
    pic 1: normal color - http://www.esnips.com/doc/f9614bb5-cb07-4d8e-83bc-9aa234240a93/1
    pic 2: changed color - http://www.esnips.com/doc/d3a759e7-f628-4390-8690-36b05e361c66/2
    Kindly help me in getting this issue resolved.
    Thanks.

    Hi All,
    We have an R12.1.1 instance on solaris and we are facing a strange problem.
    The background color of the application changes to blue suddenly and the Users are not able to properly see the links which are in blue. If we bounce Apache, it comes back to normal but after sometime the problem comes back.
    Please check the below two pictures to understand exactly how the color change is happening.
    pic 1: normal color - http://www.esnips.com/doc/f9614bb5-cb07-4d8e-83bc-9aa234240a93/1
    pic 2: changed color - http://www.esnips.com/doc/d3a759e7-f628-4390-8690-36b05e361c66/2
    Kindly help me in getting this issue resolved.
    Thanks.

  • How to change row background when the value was changed?

    hello expers!!
    i need your help...plz help me.
    i want my table row(specific) background changes when the user changed the value in a cell. I am able to know that a value in a cell was changed but the problem is i dont know how to change row color background. I've researched over the internet on how to solve this problem but nothing was found.
    please see the link to help you visualize what i mean. tnx!
    [http://www.flickr.com/photos/28686474@N04/2708299927/]
    tnx in advance!! code snippet will be a great help...
    Edited by: kagaw3000 on Jul 27, 2008 8:22 PM

    final JTable table = new JTable(data, columnNames) {
    int lastRowChanged = -1;
    @Override
    public void tableChanged(TableModelEvent e) {
         super.tableChanged(e);
         lastRowChanged = e.getFirstRow();
         repaint();         
    @Override
    public Component prepareRenderer(TableCellRenderer renderer,
                   int rowIndex, int vColIndex) {
    Component c = super.prepareRenderer(renderer, rowIndex, vColIndex);
         if (rowIndex == lastRowChanged) {
              c.setBackground(Color.RED);
         } else { 
              c.setBackground(getBackground());
         return c;        
    ...........this code will changed background color when data was changed BUT if i changed another data in another row the previous backgound color(RED) will be erase. To make it more clearer, it will only change background color of a row only to one row NOT to multiple rows(that is being edited).

Maybe you are looking for