Can you please test this page?

http://www.massmediacc.com/clients/COH_7-17-09/COH_Newsletter.html
My client is saying there are issues when running this on a PC Internet Explorer. Not sure which version. But it looks good on my mac Firefox and Safari. My coding is not that great yet, so maybe I missed something. Also is there a way to have the three columns line up on a browsers? Right now everything is set to a fixed length. Should I change that? Thanks for everyones help!
Michael

Not bad according to w3C validator you only have three errors ans one warning. This might be enough to throw IE into a Tizzy
http://validator.w3.org/check?uri=http%3A%2F%2Fwww.massmediacc.com%2Fclients%2FCOH_7-17-09 %2FCOH_Newsletter.html&charset=%28detect+automatically%29&doctype=Inline&group=0
Click on the link to see what needs fixed especially the warning.

Similar Messages

  • My scroll feature of the Lenovo ThinkPad(red scroll) is not working in the new Firefox 4. It was working fine in 3.6. Can you please fix this as this is very important feature.

    The scroll feature(middle button) is not working on the new firefox 4. So because of this I need to move the scroll bar to move the page. This is very irritating problem, if you are a guy who uses the middle button to scroll. Can you please fix this..
    Thanks!!!

    I updated to Firefox 4.01 today and the middle scroll button on my Lenovo T400 stopped working. I downloaded the updated Ultranav utility and the Ultranav driver for my T400 from here http://www-307.ibm.com/pc/support/site.wss/MIGR-72858.html and then uninstalled the "Thinkpad Ultranav Driver" from Add/Remove programs rebooted and then installed the updated utility and driver (another reboot) and it now works perfectly.
    So glad to get this working again.

  • What  are the advantages over sql in pl/sql...can you please answer this?

    Hi,
    what are the main differences between sql and pl/sql...why v are using pl/sql rather then sql...can you please answer this question?

    SQL is used to access the database. PL/SQL is a programming language where SQL is seamlessly integrated. In order to access the database in PL/SQL, you have to use SQL.
    Think of it as two pieces of software, two "engines". If you want to interact with the database, then performance wise it's best to use only one engine (SQL only), instead of two (PL/SQL and SQL). If a PL/SQL program executes a SQL statement, it does a "context switch", i.e. saving its state in PL/SQL before giving control to the SQL engine and vice versa. This is quite fast, but do a lot of them and it is slow, so beware of programming SQL statements inside loops.
    Another way to put it: SQL is a fourth generation language (4GL) where you tell what you want, not how. The software, the optimizer, will decide for you how to process the statement. PL/SQL is a third generation language (3GL), or at least the PL-part is, where you describe how things should be processed. Leading to more code and more control. With every Oracle release, SQL becomes more powerful and the optimizer gets better, so using SQL is increasingly important.
    For complex processing, using PL/SQL is still necessary. But use it with care.
    Hope this helps.
    Regards,
    Rob.

  • Can someone please test this widget?

    Hi,
    (sorry if this is in the wrong forum but I couldn't find a better place)
    Can someone please try this widget?
    http://www.apple.com/downloads/dashboard/information/speciesdistributionmap.html
    The map shows on 2 out of 3 of the macs in the office but we can't determine why it doesn't work on the third... If you can see the map, then it works. We can't spot any difference in the settings on the machines
    Many many thanks!
    Tim

    I have the i7-720 and the processor and I can attest to the W510 overheating. I recently had my planar replaced under warranty and it returned with an overheating issue for heavy processor loads.  This overheating was resolved by properly applying thermal paste (lenovo applied about 3x as much as was needed)  while the GPU continues to overheat and cause stuttering. If I run furmark in any resolution for a length of time at maximum fan speed and watch the GPU overheat, throttle, and overheat again. This would all be fine if it didn't cause the whole system to lag terribly in games or on the desktop.
    In my view the design of the GPU cooler and thermal pads for the GPU memory cooling are very sensitive to installation. The cooler is easy to bend and the pressure clamp for the GPU isn't really designed to a certain tolerance. It's simply a clamp with a bent part that will apply some random amount of pressure to the gpu cooler.
    It's just such a delicate system of cooling that there is too much room for error. It has to be installed correctly in order to function properly and I don't think there is really a good way of making sure that you've done it without running benchmarks for hours after reinstalling the cooler. I don't think this is something Lenovo is going to do. There aren't any options from Lenovo for a better heat sink design and I am pretty sure not everyone is having these issues.
    So I'm going to mess with the GPU cooler until it starts working. Here's a furmark screenshot showing the temps.
    Link to picture
    Moderator note; picture(s) totalling >50K converted to link(s) Forum Rules

  • Regarding color picking and color management - can someone, please test this?

    Please take a few seconds to test this and let me know the result.
    This is with CS5 but probably the same with older versions:
    Create a new document and zoom out so that the canvas is smaller than the window.
    Change the Standard Screen Mode color to Custom and choose some color, for example gray that is 60 for each R,G, and B.
    You can do that in the Interface page of the Preferences or by right clicking on the empty area of the window that is beyond the image's canvas.
    Using the eyedropper tool pick the color of that empty area
    Press Alt + Delete to fill the canvas with that color.
    Do you see a difference between the canvas and that area.
    I see a slight difference when the color management preview is on and no difference when it is off (soft proofing using Monitor RGB)
    I have some ideas but it will be great of someone can make a clear conclusion and explanation for this behavior.

    Thanks for that confirmation, Chris.
    Same thing with my apps, though with effort I suppose the colors for the controls and background COULD be put through the color management system at startup time...  Lots more complexity though, and that would kind of diverge with the concept of theme selection, not to mention potentially uncovering bugs in the control implementations...  And, if the user has gone out of his way to set everything to a pretty shade of blue, and along comes a color-managed dialog that's gone greenish because that's what those color values REALLY mean, that would likely be reported as a bug just because it's different...
    -Noel

  • Mac users!! can you look at this page??

    hi there,
    if there's any of you out there on a mac that wouldn't mind
    checking to see if this lounge page works properly...i'd appreciate
    it. it shoudl look like a lounge and you should see a couch and you
    should be able to load audio and video clips, etc. my clients said
    some of her friends using safari and firefox cannot see the page:
    http://www.cherylsklar.com/lounge/lounge.html
    can you see it?? or is it a problem one random person is
    having?
    thanks!!!
    denise

    for (i=0;i<emails.length;i++)
    if (v1.contains(emails))
    v2.removeElement(emails);
    else
    v1.addElement(emails);
    v2.addElement(emails);
    }You should be indexing you array references as in:
    for(x=0; x<emails.length; x++) {
       if (v1.contains(emails[x])) {
          v2.removeElement(emails[x]);
       else {
          v1.addElement(emails[x]);
          v2.addElement(emails[x]);
    }Mark

  • Dear Hosts/Moderators: Can you please delete this post?

    Hi-
    I recently realized that when I google my name, the post I wrote at the end of a thread always shows up as one of the first few results on Google.
    *Could a Host or Moderator please delete this post so it would stop showing up on google?*
    It is the last post on this thread: http://discussions.apple.com/thread.jspa?threadID=1993994&tstart=0
    I would be much obliged.

    You're Again Welcome Sasha!
    And I also suggest, that you should select Hide for your Name in Your Settings.
    And be sure to click on the Save tab at the bottom of that page.
    ali b

  • Can someone PLEASE test this .flv in Progressive Dreamweaver Embed

    hi,
    Please can somebody try to embed the following .flv flash
    video using Dreamweaver 8 using Progressive Download and let me
    know if it works.
    http://www.sparklywater.com/flashtest/test_y.flv
    If it does not work .. can anyone please let me know why? : (
    thanks.

    Hi,
    thanks alot for testing the video.
    If anyone can provide any more info, or can show me an
    alternative way to embed the video in a webpage (other than
    paid-Streaming), I'd be grateful,
    thanks.
    PS. - the video is from the YouTube website
    (www.youtube.com), the .flv file downloaded through KeepVid -
    www.keepvid.com .

  • My computer crashed and I had no back up.  How can I retrieve my purchased songs?  I can view my history of purchased songs and the list appears in itunes with ! next to them.  Can you please reset this so I can re-download my purchased music.

    My name is Janet Haynes.  I have a PC and it crashed.  I now have a new PC and have installed itunes.  My music list appears with ! by them.  How do I get my purchased music back.  I have done all the online support and nothing has worked.  I made an appointment with the Genius Bar at the Apple store and they told me to go this route.  Please reset my itunes an allow me to re-download  my music.  I do not have a tremendous amount of songs, but do not want to have to purchase them again.   Please, Please help me.  I thank you in advance
    Janet Haynes
    [email protected] or [email protected]
    (225) 278-0431

    It is probably not wise to leave your e-mail and phone number on a public forum.
    It has always been very basic to always maintain a backup copy of your computer. Use your backup copy to put everything back.
    You purchase one download only.
    If for some reason you have failed to maintain a backup ( not good), then you can transfer itunes purchases from an ipod: File>Transfer Purchases

  • Can you please test your Unibody 17in 9600 graphics card.

    I have a problem where I am getting green lines and distortion lines on my screen when I am playing COD 4. I've been reading through forums on what is happening to other people with the same problems. I have read that some have tried a SMC reset and have had good results temporarily.
    I think there is a way to replicate the problem by going to apple's movie trailer site and downloading three HD trailers. Put all the trailers on loop and let run for at least 10 minutes.
    Please post your results..
    Note: If you did do a SMC reset put the machine to sleep and then wake it up and see if the graphics problem is still gone.
    Thanks.

    Hi,
    if you want to speed Motion up for under 300USD - the best way is to change your graphic card to ATI 9800 Pro Mac Edition for 249USD.
    This card you can find here:
    https://eshop.macsales.com/item/ATI%20Technologies/100435066/
    There is a faster card to your computer - NVIDIA 6800 GT DDL or NVIDIA 6800 Ultra DDL - but there are much more expensive:
    http://www.welovemacs.com/6613441.html
    http://www.welovemacs.com/6613332.html
    And in fact, it is almost all you can do with your computer.
    Of course you can ad some RAM (I don't know how many RAM do you have now). For about 90 USD you can buy at OWC 1GB of RAM - it will help a little in Motion.
    I think that you can not have PCI-X graphic card installed in your computer - only AGP card will work.
    And besides of it having two cards, if you don't have 3 monitors connected, doesn't have any sense. Only cards called crossfired can be installed in pair for have better performance.
    Marek.

  • Can you please test a simple program on the PDA for me

    Hi,
    I am attaching a simple code for writing an array on the serial port of the PDA. The serial port is configured for 57600, 8, 1 stop, no parity.
    I need to know if you get the following sequence in the display "Checkstring 3" : 03,08,00,01,03,00
    On my PDA (IPAQ 5450) the "00" is not displayed or transmitted. Hence I wish to know if LV has a bug or I need to write a DLL to do this operation.
    Please help me, because this is the last thing that I expected LV to go wrong.
    Thanks in advance.
    Attachments:
    UnderDev_SerialPortCommandWrite.vi ‏70 KB
    Serial_Port_Initialize.vi ‏27 KB

    Hello �
    I tried your program in an iPAQ H3845 and I was able to see the 00 in the sequence.
    S Vences

  • Since 5.0 upgrade my email links won't open .... can you please sort this out as I use links from messages frequently

    I use windows Live email programme and the links worked fine until the new upgrade for Firefox 5.0 was done. Now I just get a pop up error message that says 'There is a problem sending the command to the programme' on any link.

    Genieo does not appear to be the problem but Rapport / Trusteer is.
    PlugIn Path:       /Library/Rapport/*/librooksbas.dylib   < from your report
    You need to remove Rapport ...
    Instructions here > Uninstalling Rapport on Mac OS X | Trusteer  
    That software has casued many Mac / Safari users problems as noted from an Apple Support Communities search here.

  • Can you please read this ABAP sentence for me? :-)

    Hi,
    What does it means the "operator" CHECK in the apap sentence below?
    Does the bset-mwskz EQ 'II' or OR bset-mwskz EQ 'N0' should be present in the report or not?
        SELECT * FROM bset WHERE bukrs = bkpf-bukrs
                             AND gjahr = bkpf-gjahr
                             AND belnr = bkpf-belnr
                             AND ( ktosl = 'ESA' OR ktosl = 'VST' ).
          CHECK bset-mwskz EQ 'II' OR bset-mwskz EQ 'N0'.
    Thanks and BR
    Saso

    CHECK bset-mwskz EQ 'II' OR bset-mwskz EQ 'N0'
    The above check is similar to the below code.
    IF bset-mwskz EQ 'II' OR bset-mwskz EQ 'N0'.
       <<code after CHECK statement>>
    ELSE.
      <<branching statment>>
    ENDIF.
    The <<branching statement>> could be
    1. CONTINUE if the CHECK is within a LOOP.
    2. EXIT if its called within a subroutine or a particular event.
    Say for example, if your code is llike this.
    SELECT * FROM bset WHERE bukrs = bkpf-bukrs
    AND gjahr = bkpf-gjahr
    AND belnr = bkpf-belnr
    AND ( ktosl = 'ESA' OR ktosl = 'VST' ).
    CHECK bset-mwskz EQ 'II' OR bset-mwskz EQ 'N0'.
    <<some code>>
    ENDSELECT.
    Then it is similar to the code below.
    SELECT * FROM bset WHERE bukrs = bkpf-bukrs
        AND gjahr = bkpf-gjahr
        AND belnr = bkpf-belnr
        AND ( ktosl = 'ESA' OR ktosl = 'VST' )
        AND ( mwskz EQ 'II' OR mwskz EQ 'N0' ).
    <<some code>>
    ENDSELECT
    Hope this helps.
    Thanks,
    Balaji

  • Can You Please fix this Forum

    Cannot reply to any posts. Keeps saying I am not logged in after I type the reply. Sometimes people should not fix what is not broken. Thank You

    Nexus 7 cannot reply. Two windows 8.1 laptops cannot reply. 1 iMac cannot reply, 2 new iPad with retina display cannot reply but on both my new iPhone 5s devices I can read and reply.
    Additionally 2 desktops also cannot reply so I reset the devices and have reset my modems and routers. Again only the iPhones are working . Ha ha very strange

  • Can you please cancel my subscription plan?

    Hi I need to cancel my creative cloud subscription plan and single app photoshop plan?
    Can you please do this asap? I'm on the wrong plan and need to cancel them all.
    The creative cloud plan is under 30 days so I would like a refund.
    Thank you!

    i am about in the same boat as you. The help is useless so is the tech support, that is if your willing to wait a few hours to reach them if you can that is. If things do not improve at adobe im canceling too.
    Here is the good news i have most the abode programs i use regularly installed, they can be hacked so when i cancel i still can use photoshop and other programs. I do have the .dll files needed to do such a hack and its easy to just repace the files so it never will ask subscription information again.
    so im loosing nothing but useless tech support and my online storage. Get your **** staight adobe or is hack my computers software time.

Maybe you are looking for

  • Dual Boot windows 32bit and 64bit overclocking problems

    Im pretty new to overclocking and this is my first try I manage to get my AMD Venice 3200 to hit 2500 with 250fsb X 10, HTT 4, vcore 1.44. I used memory divider 166/200 so the memory is running at 208MHz not alot of overclocking on the memory since i

  • How to display the multiple lines text in a single - String, StringBuffer

    Hi, I have a textarea field named Decription which contains more than one line seperated by new line.I need to display those five lines in a single text without breaking. Is it possible? I am getting ArrayIndexOutOfBoundsException while i reached to

  • Issue in Profitability segment in ITS for FV50

    Dear All, I am creating ITS for FV50 tcode and testing the same. Here every thing goes fine except profitability segment. I am cliking on Profitability segment (PS) and Window popup is opening. Here when I am passing Profit center and try to go back

  • Synchronous proxy to jdbc

    hi all. i got one doubt like. here iam doing sap proxy to jdbc. xi is going to process tht proxy in order to pick some fields form 3rd party database and after picking these fileds one coloumn in that table is enabled to make sure that those fileds w

  • JWS 6.0 update 22 uses stale cached JNLP from desktop link

    With the latest Java 6.0 update 22 it appears that JWS is using the stale cached JNLP when launching from the desktop link after a JNLP update at the server. Has anyone else experienced this issue with update 22? For demonstration, I used the sample