IE6/CSS browser issue- any idea why this is not working?

http://www.wilmerdds.com/test/index.htm
If you look at the left column, you will see a black box.  It shouldn't be black. it should match the bg color of the column.  Any idea why this is happening?

Hi
The problem is that you are using a png, and IE6 does not support png transparency. You could try using the iepngfix from - http://www.twinhelix.com/css/iepngfix/.
PZ

Similar Messages

  • Any idea why setSubject() is not working as expected??

    I am using SmtpMessage's setSubject:
    setSubject( "some subject" )
    but the email I receive says "no subject"
    I have made sure that the subject is being set correctly in the code.
    The email is received and the content of the email (set via setContent) is exactly as I had set it.
    But the subject is missing even though I set it.
    Any idea why this is happening?

    Nope.
    Is there anything unusual about the text you're using
    for the subject? Any newlines, for instance?
    If you turn on session debugging, do you see the
    subject in the protocol trace?

  • Any ideas why this won't work?

    I appreciate all the help this board provides. I've learned a ton coming here as I continue to grow my SQL knowledge.
    I need this query to look at the Work_order table and pull any lines that were closed during the prior day. Then I need it to look at the Stock_Tran table and pulled and lines that had a Date_Trans during the prior day. That will give me the work completed and the work that was partially completed during the prior day.
    I'm getting an error message at the line I've underlined and bolded that work_order.partno is an invalid identifier (I'm sure that's not the only error). The query worked until I started adding the Stock_Tran table.
    Any ideas would be greatly appreciated!!!
    SELECT
    SITECODE
    , WORK_ORDER_NUMBER AS "WO #"
    , partno
    , WO_PRIORITY AS "PRIORITY"
    , QTY_WORK_ORDER
    , QTY_FINISHED
    , TRUNC(WO_RELEASE_DATE) AS "RELEASE DATE"
    , TRUNC(WO_START_DATE) AS "START DATE"
    , TRUNC(WO_CLOSED_DATE) AS "CLOSED DATE"
    , STOCK_TRAN.QTY_CHANGE
    FROM
    WORK_ORDER
    , (SELECT SUM(QTY_CHANGE) AS "QTY WORKED" FROM STOCK_TRAN
    WHERE
    SITECODE = 'FCI'
    AND STOCK_TRAN_CODE = 'P'
    AND DATE_TRAN = TRUNC(SYSDATE - 1)
    AND WORK_ORDER.SITECODE = STOCK_TRAN.SITECODE
    AND WORK_ORDER.PARTNO = STOCK_TRAN.PARTNO)_
    WHERE
    WORK_ORDER_TYPE = 'K'
    AND SITECODE = 'FCI'
    AND (TRUNC(WO_CLOSED_DATE) = TRUNC(SYSDATE - 1) OR STOCK_TRAN.DATE_TRAN = TRUNC(SYSDATE -1) )
    AND QTY_FINISHED >0
    ORDER BY WO_PRIORITY DESC

    Hi,
    847497 wrote:
    That gets me closer! Thanks. Now I've getting an error at the line highlighted below.
    Here's the error I'm getting: ORA-00904: "STOCK"."QTY_CHANGE": invalid identifier
    SELECT
    SITECODE
    , WORK_ORDER_NUMBER AS "WO #"
    , partno
    , WO_PRIORITY AS "PRIORITY"
    , QTY_WORK_ORDER
    , QTY_FINISHED
    , TRUNC(WO_RELEASE_DATE) AS "RELEASE DATE"
    , TRUNC(WO_START_DATE) AS "START DATE"
    , TRUNC(WO_CLOSED_DATE) AS "CLOSED DATE"
    *  , STOCK.QTYCHANGE*_I assume you mean this is the line where the error message points. It would be better to mark it with a comment, like this:
    ,       STOCK.QTY_CHANGE                  -- *****  ORA-00904 occurs here *****  FROM
    WORK_ORDER
    , (SELECT SUM(QTY_CHANGE) AS "QTY WORKED"
    , sitecode
    , partno
    , date_tran
    FROM STOCK_TRAN
    WHERE SITECODE = 'FCI'
    AND STOCK_TRAN_CODE = 'P'
    AND DATE_TRAN = TRUNC(SYSDATE - 1)
    GROUP BY sitecode, partno ) stockThe only columns in the stock "table" (it's acutally an in-line view) are "QTY WORKED", SITECODE, PARTNO amnd DATE_TRAN.
    If QTY_CHANGE is a column in the STOCK_TRAN table, then yiou can include it in the SELECT clause of the in-line view, and that will allow you to use it in the main query.
    WHERE stock.sitecode = work_order.sitecode
    AND stock.partno = work_order.partno
    AND WORK_ORDER_TYPE = 'K'
    AND work_order.SITECODE = 'FCI'
    AND (TRUNC(WO_CLOSED_DATE) = TRUNC(SYSDATE - 1) OR STOCK.DATE_TRAN = TRUNC(SYSDATE -1) )
    AND QTY_FINISHED >0
    ORDER BY WO_PRIORITY DESC

  • Has any one got any idea why this won't work?

    import java.io.*;
    import java.util.*;
    class VirusScanner
         static String Storedfiles = "c:\\bbb";
         //To change which virus signatures are to be used, the line below must be edited to reflect which directory contains them.
         static String VirusSignatures = "c:\\aaa";
         static int files = 0;
         static int infectedfiles = 0;
    static File sig = new File(VirusSignatures);
         static File dir = new File(Storedfiles);
         public static void main(String args[]) throws IOException
              //if file and signature directories are valid, run scan and then display the results of scan.
              if(dir.isDirectory() && sig.isDirectory())
                   System.out.println("Scanning Directory: " + dir);
                   scanDir(dir);
                   System.out.println("Scan of " + dir + " complete. " + files + " files scanned. " + infectedfiles + " infected files found.");
              //otherwise output "Invalid Directory" on the screen
              else
                   System.out.println("Invalid Directory");
         public static void scanDir(File direct) throws IOException
              //Create a string array containing a list of all files in the directory
              String s[] = direct.list();
    //loop through every file or directory inside current directory
              //and call relevant method
              for (int i=0; i<s.length; i++)
                   File current = new File(direct + "/" + s);
                   if (current.isDirectory())
                        scanDir(current);
                   else
                        scanFile(current);
         public static void scanFile(File filepath) throws IOException
              //Add one to the count of files scanned
    files ++;
              // Create filereader object for file to be scanned, and wrap with buffer
              FileReader fr2 = new FileReader (filepath);
              BufferedReader br2 = new BufferedReader(fr2);
              //Create a string containing the contents of the file
    int fileInt = (int) filepath.length();
    //int fileInt = fileLong.intValue();
    char[] buf2 = new char[fileInt];
              br2.read(buf2,0,fileInt);
              String theFile = new String(buf2);
              //Close readers
              fr2.close();
              br2.close();
              //Create a string array containing a list of all of the signature files
              String s[] = sig.list();
              //for loop which checks the contents of each signature file against the file to be checked
              for(int i=1;i<s.length;i++)
                   //Create filereader object for relevant virus signature and wrap with buffer
    File sigFile = new File (VirusSignatures + "/signature" + i);
                   FileReader fr = new FileReader (sigFile);
                   BufferedReader br = new BufferedReader(fr);
                   //Create a string containing the contents of the signature file
    int virusInt = (int) filepath.length();
    //int virusInt = virusLong.intValue();
    char[] buf = new char[virusInt]; // the buffer
                   br.read(buf,0,virusInt);
                   String theSig = new String(buf);
                   //Close readers
                   fr.close();
                   br.close();
                   //If signature is found in file report to screen
                   if (theFile.indexOf(theSig)!=-1)
                        System.out.println("Virus " + i + " found in file " + filepath);
                        infectedfiles++;

    This topic is apparently indicated as closed here:
    http://forum.java.sun.com/thread.jspa?threadID=621169
    Not sure why you posted this at all.

  • When I compose an email in either gmail or yahoo, the cursor lags behind for about 2 seconds. This does not happen when I compose an email with Safari or Chrome. I am using a Mac with Firefox version 3.6.3. Any idea why this happens?

    When I compose an email in either gmail or yahoo, the cursor lags behind for about 2 seconds. This does not happen when I compose an email with Safari or Chrome. I am using a Mac with Firefox version 3.6.3. Any idea why this happens?
    == This happened ==
    Every time Firefox opened

    try
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • HT201412 My camera light is staying on any ideas why this is as its just started to happen

    My camera light is staying on any ideas why this is as its just started to happen and I have no idea what's happened or how to switch it off

    That also indicates a hardware issue with the power and/or home buttons.
    You need to bring the phone to an Apple store and have them check it out.
    ~Lyssa

  • I am trying to softproof an image using a CMYK .icc file. I sent an image from LR 5 to PS CC 2014, opened the Camera Raw FIlter, but the hyperlink to access workflow is not showing up in the CR dialogue box... Any ideas why this might be?

    I am trying to softproof an image using a CMYK .icc file. I sent an image from LR 5 to PS CC 2014, opened the Camera Raw FIlter, but the hyperlink to access workflow is not showing up in the CR dialogue box... Any ideas why this might be?

    I am trying to softproof an image using a CMYK .icc file. I sent an image from LR 5 to PS CC 2014, opened the Camera Raw FIlter, but the hyperlink to access workflow is not showing up in the CR dialogue box... Any ideas why this might be?

  • My wifi goes down at least once a day and I have to unplug the time capsule and reboot it and then it works fine.  Any idea why this is happening/what I can do to fix it?

    My wifi goes down at least once a day and I have to unplug the time capsule and reboot it and then it works fine.  Any idea why this is happening/what I can do to fix it?

    I was having this problem while still using Mavericks -- it started after a Mavericks update last spring.  During the initial Yosemite beta runs over the summer, it seemed to be fixed, but after the official launch in October, I had all sorts of problems keeping connected.  Its gotten a little better, but still happens to at least one of my devices every day.  Weird that we still cannot figure out why the connection keeps dropping on some devices, but not others, and then the next day, one of the devices that didn't disconnect the previous day will disconnect, but the ones that did disconnect, stay connected.  It's just sloppy, poorly written software for technology that isn't working the way it should.  If you turn off Continuity and Handoff on all your devices, you will probably see that everything stays connected.  With those turned off on all devices, TC stayed connected to everything for over a month.  The day I turned Continuity back on, all the problems started again.  It had something to do with the bluetooth version being used, the wifi routine, and Apple's AirPlay technology not quite getting along with each other.

  • Iphoto will not re-install after disappearing during a software update, any ideas why this happened?

    Before i ran the software update i had to iphoto icons in the launch pad, both had exactlly the same content so i just ignored it for a wile till i needed to update my photos, which i was hoping to do after the update.
    However when i restarted both iphoto icons had gone and iphoto seems to have been wiped off my mac completelly, I have got a back up of all my pic and videos so this is not a problem of recovering them.
    i have then tryed to instal iphoto from the app store, resulting in there being a perminant downloading icon making no progress over the last two hours.
    If any body has any idea why this happened and what i can do to provent it happening again as well as getting iphoto back the help wil be much apricated.

    In addition to Larry's questions what software update did you apply? Do you still have an iPhoto Library in your Pictures folder? If you do what happens if you double click on it?
    OT

  • My Mac won't read cyrillic in certain files and displays instead weird characters like this: "–í–µ-Ç–µ-Ä –ø-Ä–æ–¥–∏-Ä–∞–µ-Ç –¥–æ –∫–æ-Å-Ç–µ–π." Any ideas why this might be or how I can solve it?

    Yesterday I extracted the subtitles of an MKV file to try and print them. Unfortunately, when I open the .srt file with any text processor, it displays weird characters like the ones included in the title:
    "–û–±—ã–≤–∞—Ç–µ–ª–∏ –ø–µ—á–∞–ª—å–Ω—ã.
    –í–µ—Ç–µ—Ä –ø—Ä–æ–¥–∏—Ä–∞–µ—Ç –¥–æ –∫–æ—Å—Ç–µ–π."
    I thought this had to do with it being an .srt file, but just now I encountered the same problem with an Excel file.
    Any ideas why this might be or suggestions as to how to solve it?
    Thanks in advance,
    Mario

    It looks like an encoding problem.  You should try opening the file in a text editor where you can choose one of the various possible cyrillic encodings (utf-8, koi8-r, iso-8859-5, win-1251, MacCyrillic)

  • My iphone suddenly died as well. Holding the sleep button and home button together got it going again. Any ideas why this happens?

    my iphone suddenly died as well. Holding the sleep button and home button together got it going again. Any ideas why this happened?

    No, I don't think anyone here would know.
    Mine has done that once or twice.

  • I have noticed recently that deleted e mail messages do not disappear from the screen.  Instead they turn grey until I switch to another mailbox.  When I return, they are gone.  Any idea why this has started to happen?

    I have noticed recently that deleted e mail messages do not disappear from the screen.  Instead they turn grey until I switch to another mailbox.  When I return, they are gone.  Any idea why this has started to happen?

    I have noticed recently that deleted e mail messages do not disappear from the screen.  Instead they turn grey until I switch to another mailbox.  When I return, they are gone.  Any idea why this has started to happen?

  • After clicking on my FF shortcut icon on my desktop, it takes FF 30-45 seconds to open. Any ideas why this happens?

    after clicking on my FF shortcut icon on my desktop, it takes FF 30-45 seconds to open. So i sit there and wai and wait and wait until it finally opens. Any ideas why this happens?

    In order to diagnose your problem you will need to download and install the below
    Try clicking the tap problematic apps while the trace is running
    Install the WPT (windows Performance Toolkit) 
    http://www.microsoft.com/en-us/download/details.aspx?id=30652
    Help with installation (if needed) is here
    When you have, open an elevated command prompt and type the following 
    WPRUI.exe (which is the windows performance recorder) and check off the boxes for the following:
    First level triage, CPU usage, Disk IO.  
    If your problem is not CPU or HD then check off the relevant box/s as well (for example networking or registry)  Please configure yours as per the below snip
    Click Start
    Let it run for 60 secs or more and save the file (it will show you where it is being saved and what the file is called)
    Zip the file and upload to us on Onedrive (or any file sharing service) and give us a link to it in your next post.
    Wanikiya and Dyami--Team Zigzag

  • On two occassions, all contacts were wiped off the Ipad. Any ideas why this would happen?

    On two occassions, all Contacts were wiped off the Ipad 2. Any ideas why this would happen?

    Did it happen during a sync or did they just disappear?  After they were gone, we you able to retrieve them during syncing?  Are you using any 3rd party apps to access your contacts or just the built-in Contacts app?
    In any case, I've not heard of or expeienced this on my iPhone 3G (synced with Outlook and now Google) or my iPad, although I've only had my iPad for a short time.

  • The crop tool in my tool bar is not showing up. Any ideas why this is? Please Help

    The crop tool in my tool bar is not showing up. Any ideas why this is? Please Help

    It's the 3rd one on Photoshop standard.  As Curt implies, each little icon position has several possibilities you can display, allowing you some customization of your Tools panel.  Click and hold the mouse button to see each of the choices.
    -Noel

Maybe you are looking for

  • After "Archive and Install", my printer no longer works

    Powerbook 1.67 GHz PowerPC G4 Mac OS X Version 10.4.11 I recently had some issue with my password, so the Apple Genius people ran an archive and install, reset the user password, and got me back to my original state. However, I've had to run all thes

  • Linksys and Macs

    Ok here's my problem. I am currently set up on my PC for linksys router wireless, of which I have no problem doing. I cannot install any of the files onto my iBook, because they are all .exe files, which it doesn't recognize. But it also cannot find

  • Copy as a row and paste as a column

    I have a column in a table. I want to copy the values in it and paste them as a row in another table. I have not been able to find this in the User Guide. Thanks for any help.

  • Video over ip design guideline

    Hi I want some guideline for designing video over ip setup. We have central monitoring system and multiple sites connected to central site. Now sites will have cameras and alrm system. Live videos will be recorded at sites. Now this is BOD applicatio

  • Top N displaying unexpected results

    Hi all, Cannot see the wood for the trees at the moment and need some help to understand why the following is doing what its doing. I have a requirement to produce the top 500 articles ranked by sales qty for different categories. This list of articl