Navbar problems in different browsers

Please help! I designed a navbar using a preformatted Dreamweaver template, but found that it displays differently in different browsers. The file can be found at
http://www.npc.org/NPC909/links.html
It displays fine in Opera and Safari (both Mac), but in Netscape and Firefox (both Mac) the navbar is bumped onto a second line. In IE (Mac) the navbar is on one line, but the dropdown submenus do not display.
On the PC side, in IE 8 the navbar is vertically stacked while the two submenus display on the far left of the navbar, instead of directly below their parent links. In IE 7 the submenus don't line up with their parent links, and there is a thin black line on the right of the navbar. Again, Safari displays just fine.
Our target audience is most likely to be a PC user with IE as their browser, but any suggestions you can provide to make the navbar and submenus display consistently across all browsers would be greatly appreciated.
Thanks,
Arthur

Hi, Arthur,
I don't notice that you put an id on the li for "orderpub" like this:
<ul class="MenuBarHorizontal" id="MenuBar1">
       <li><a class="MenuBarHorizontal" href="index.html" style="text-decoration: none;">Home</a></li>
       <li><a href="background.html" style="text-decoration: none;">About NPC</a></li>
       <li><a href="#" class="MenuBarHorizontal MenuBarItemSubmenu">Members</a>
         <ul>
           <li><a href="membynam.html" style="text-decoration: none;">By Name</a></li>
           <li><a href="membycom.html" style="text-decoration: none;">By Organization</a></li>
           <li><a href="membycat.html" style="text-decoration: none;">By Category</a></li>
         </ul>
       </li>
       <li><a class="MenuBarItemSubmenu" href="reportsbydoc.html" style="text-decoration: none;">Reports</a>
         <ul>
           <li><a href="reportsbyyear.html" style="text-decoration: none;">Reports By Year</a></li>
           <li><a href="emergency.html" style="text-decoration: none;">Emergency<br/>
           Planning & Preparation</a></li>
           <li><a href="energyoutlook.html" style="text-decoration: none;">Energy Outlook</a></li>
           <li><a href="environissues.html" style="text-decoration: none;">Environmental Issues</a></li>
           <li><a href="natgas.html" style="text-decoration: none;">Natural Gas</a></li>
           <li><a href="refining.html" style="text-decoration: none;">Refining</a></li>
           <li><a href="research.html" style="text-decoration: none;">Research</a></li>
<li><a href="resourcedev.html" style="text-decoration: none;">Resource Development</a></li>
<li><a href="storage.html" style="text-decoration: none;">Storage</a></li>
           <li><a href="stratpetrolres.html" style="text-decoration: none;">Strategic<br/>
             Petroleum<br/>
           Reserve</a></li>
<li><a href="transport.html" style="text-decoration: none;">Transportation</a></li>
         </ul>
       </li>
       <li id="orderpub"><a style="text-decoration: none;" href="orderpub.html">Order Publications</a></li>
       <li><a href="links.html" style="text-decoration: none;">Links</a></li>
       <li class="MenuBarHorizontal"><a href="contactus.html" style="text-decoration: none;">Contact Us</a></li>
     </ul>
In your CSS file, all you need to do is:
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: relative;
    text-align: center;
    cursor: default;
    float: left;
    text-indent: 0px;
    width: 9.25em; /* make this slightly narrower */
li#orderpub {
    width: 9.54em; /* make this as wide as it needs to be, adjusting the previous rule as needed also */
You don't actually need all that other coding for
#home {
    font-size: 100%;
    background: #039;
    text-align: center;
    text-indent: 0px;
    margin: 0px;
    padding: 0px;
    float: left;
    list-style: none;
    position: relative;
    cursor: default;
    width: 10%;
#aboutnpc {
    font-size: 100%;
    background: #039;
    text-align: center;
    text-indent: 0px;
    margin: 0px;
    padding: 0px;
    float: left;
    list-style: none;
    position: relative;
    cursor: default;
    width: 15%;
#members {
    font-size: 100%;
    background: #039;
    text-align: center;
    text-indent: 0px;
    margin: 0px;
    padding: 0px;
    float: left;
    list-style: none;
    position: relative;
    cursor: default;
    width: 15%;
#reports {
    font-size: 100%;
    background: #039;
    text-align: center;
    text-indent: 0px;
    margin: 0px;
    padding: 0px;
    float: left;
    list-style: none;
    position: relative;
    width: 15%;
#orderpub {
    font-size: 100%;
    background: #039;
    text-align: center;
    text-indent: 0px;
    margin: 0px;
    padding: 0px;
    float: left;
    list-style: none;
    position: relative;
    cursor: default;
    width: 20%;
#links {
    font-size: 100%;
    background: #039;
    text-align: center;
    text-indent: 0px;
    margin: 0px;
    padding: 0px;
    float: left;
    list-style: none;
    position: relative;
    cursor: default;
    width: 10%;
#contactus {
    font-size: 100%;
    background: #039;
    text-align: center;
    text-indent: 0px;
    margin: 0px;
    padding: 0px;
    float: left;
    list-style: none;
    position: relative;
    cursor: default;
    width: 15%;
which I would restyle as the following, in case you did want them:
li#home, li#aboutnpc, li#members,li#reports, li#orderpub, li#links, li#contactus {
       font-size: 100%;
     background: #039;
     text-align: center;
     text-indent: 0px;
     margin: 0px;
     padding: 0px;
     float: left;
     list-style: none;
     position: relative;
     cursor: default;
li#home {width: 10%;}
li#aboutnpc {width: 15%;}
li#members {width: 15%;}
li#reports {width: 15%;}
li#orderpub {width: 20%;}
li#links {width: 10%;}
li#contactus {width: 15%;}
Applying those ids to the html, we get:
<ul class="MenuBarHorizontal" id="MenuBar1">
       <li id="home"><a class="MenuBarHorizontal" href="index.html" style="text-decoration: none;">Home</a></li>
       <li id="aboutnpc"><a href="background.html" style="text-decoration: none;">About NPC</a></li>
       <li id="members"><a href="#" class="MenuBarHorizontal MenuBarItemSubmenu">Members</a>
         <ul>
           <li><a href="membynam.html" style="text-decoration: none;">By Name</a></li>
           <li><a href="membycom.html" style="text-decoration: none;">By Organization</a></li>
           <li><a href="membycat.html" style="text-decoration: none;">By Category</a></li>
         </ul>
       </li>
       <li id=reports"><a class="MenuBarItemSubmenu" href="reportsbydoc.html" style="text-decoration: none;">Reports</a>
         <ul>
           <li><a href="reportsbyyear.html" style="text-decoration: none;">Reports By Year</a></li>
           <li><a href="emergency.html" style="text-decoration: none;">Emergency<br/>
           Planning & Preparation</a></li>
           <li><a href="energyoutlook.html" style="text-decoration: none;">Energy Outlook</a></li>
           <li><a href="environissues.html" style="text-decoration: none;">Environmental Issues</a></li>
           <li><a href="natgas.html" style="text-decoration: none;">Natural Gas</a></li>
           <li><a href="refining.html" style="text-decoration: none;">Refining</a></li>
           <li><a href="research.html" style="text-decoration: none;">Research</a></li>
<li><a href="resourcedev.html" style="text-decoration: none;">Resource Development</a></li>
<li><a href="storage.html" style="text-decoration: none;">Storage</a></li>
           <li><a href="stratpetrolres.html" style="text-decoration: none;">Strategic<br/>
             Petroleum<br/>
           Reserve</a></li>
<li><a href="transport.html" style="text-decoration: none;">Transportation</a></li>
         </ul>
       </li>
       <li id="orderpub"><a href="orderpub.html" style="text-decoration: none;" class="">Order Publications</a></li>
       <li id="links"><a href="links.html" style="text-decoration: none;">Links</a></li>
       <li id="contactus" class="MenuBarHorizontal"><a href="contactus.html" style="text-decoration: none;">Contact Us</a></li>
     </ul>
Note that each main head li has an id now.
Beth

Similar Messages

  • Problem with different browsers when I save pdf

    Hi I have server side application which open some pdf form and populate it with values and some javascript(I use FDFToolkit to do that). A client connects with a browser to my server opens the form in the browser window and after that saves the form as pdf to his local computer. When the client uses InternetExplorer 7 the pdf form on the client computer(the form is open with acrobat 9 pro) works exactly as in the browser window but when the form is saved with Firefox 3.0.3 the form is open without the values and javascript in it. Can someone help ?

    > Can any body tell me how do i convert doc file in to pdf file. i know it
    > is simple using some c++ api but i wanna to know about that api from which
    > i can convert the doc to pdf.
    There are many free converters on the web. Also, if you are working with
    Office 2007, you can save as pdf natively.
    But you didn't give much detail - are you trying to do this automatically?
    What's the workflow that has you considering C++ as the route to your
    solution?
    Steve
    http://twitter.com/Stevehoward999
    Adobe Community Expert: eLearning, Mobile and Devices

  • Flash movie acts differently on different browsers

    hi
    i have created an online calendar, you can see it on
    this
    link
    this application uses php as well which is called through the
    actionscript
    it works fine on firefox browsers, and some versions of IE,
    the version i have is explorer 7 (which i really dont like), and it
    doesnt work well at all. dont know if it works on safari or other
    browsers, i havent checked it out yet
    (the main problem is trying to write more than one message,
    it isnt displayed on the messageboard on IE)
    does anyone have an idea what the problem could be?
    also if someone sees any problems on different browsers i
    would like to know
    thanks

    "and it doesnt work well at all."
    Is there sometime more specific to describe what is the
    problem?

  • Quicktime movie looks different in different browsers.  Is there a fix?

    I have an H.264 Quicktime movie (and will be making versions with the Sorenson Video 3 codec, WMV compatible files, and FLV as well), and it looks the way I want it to look in Firefox for Mac and Firefox for Vista. In Safari and Internet Explorer, the blacks are washed out and it looks less saturated (though this is probably due to the image being washed out).
    Is there anything I can do? I know Safari reads color profiles now, but I don't know how to add that to a Quicktime movie, and that wouldn't fix the problem with IE (or, curiously, Firefox on XP). If I drop the blacks enough to make it look good in Safari and IE, it will be too dark for Firefox users. Firefox appears to be the one displaying it "properly" (how it looks in FCP and the stand-alone Quicktime player).

    It is indeed tricky. I've spent a lot of time over the last few months trying to figure it all out and still can't wrap my head around it all. That's due in large part because there's a lot of misinformation out there.
    Thanks for the article. It's interesting because I too set my monitor to 2.2 gamma (sRGB) but for the purpose of working on this project had reverted it to 1.8 (Cinema Display default), and it's been there for a long time now. It is interesting, but it didn't solve my problem.
    My problem is different browsers show a Quicktime differently. Now that I've switched to 2.2, Firefox looks too dark and Safari looks just right (where as before Firefox looked just right and Safari was washed out). Is there or is there not an option to include a color profile with Quicktimes? If not, I'll have to make a compromise, and I'd rather have one that looks great across all high-end monitors (meaning an expensive Dell or Apple monitor on OSX, WXP, and WV).
    Does anyone know what in particular is making the two browsers display Quicktimes differently?

  • HT1338 I am trying to register my Appliances and when I try to click on "Save" or "Submit" I am unable on my MacBook pro. I have tried different browsers yet still same problem.  Can anyone shed some light on this please.

    I am trying to register my Appliances and when I try to click on "Save" or "Submit" I am unable on my MacBook pro. I have tried different browsers yet still same problem.  Can anyone shed some light on this please.

    Thanks for that 'sberman' - because my iPhone is backed-up to my work computer (only at this stage) I have had to call our IT Department in Adleaide. (4 times this morning). The last guy managed to get the phone into 'DFU Mode' - no more recovery mode screen - (kind of 'asleep' perhaps) from my understanding of same. I am awaiting a call again from IT so they can get my computer to actually recognise my iPhone on the C Drive. This also happened to  one of my colleagues in Newman (WA). She got so frustrated with the whole process that she bought another phone the next time she was in 'civilisation.' She hasn't had any problems since. (Cross fingers).
    Thanks again, Sandra2474.

  • CSS problem with content in different browsers?

    I've been revamping the CSS for a website and got most internal pages to display normally on different browsers. However, the site entry page is driving me nuts. I think I've been staring at the code so long that I've overlooked an obvious error. In Firefox, the paragraph of intro text lines up nicely to the right of the navigation panel. In Google Chrome (and IE of course), it pops down underneath the nav panel as shown in screen capture below. Even if I zoom out. Included a link so you can see it in real time. (Since the revamp is recent, the style sheet isn't pretty.)
    http://www.keithpurtell.com/kthings/index.htm

    Sorry for the slow reply. Thanksgiving and family in town and all that. No I didn't fix or change anything. And I'll make sure the percentage match in the morning. It's after midnight here.

  • OAF pages in different browsers--problem

    Does the page behave differently on different browsers? For instance,we have a page that loads fine in mozilla, but in IE lay out goes awry. Do we have any special setting to do?
    Kindly reply asap

    Check the reply in thread Clock in OAF page
    Please elaborate, what exactly is the issue? What do you mean by "but in IE lay out goes awry"?
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Issue with images in different browsers

    Having an issue with different browsers -- hoped someone
    could help.
    If I open my site with IE, everything looks as it does in
    Dreamweaver -- there is no overlap of text and images/etc.
    If I open my site with Mozilla or Safari, it seems to
    arbitrarily move up some of the images over the top of text. Not
    all of the images, mind you -- just a few random ones throughout
    the page.
    Opening the following link in both type of browsers may give
    you a clue as to what is going on. What can I do to get it to look
    like it does in IE?
    http://www.centecsystems.com/centecexample/disanapplications.htm

    LOL ahem, 'scuze me. :-)
    -N
    "Walt F. Schaefer" <[email protected]> wrote in
    message
    news:[email protected]...
    > >>For that we rely on IE hacks
    >
    > In polite company we call those "conditional comments".
    > --
    >
    > Walt
    >
    >
    > "Nancy O" <[email protected]> wrote in
    message
    > news:[email protected]...
    > > First off, you are assuming incorrectly that IE is
    the good browser and
    > > Mozilla is the bad browser. Actually, it's the
    other way around. If
    you
    > > build your sites to perform well in Mozilla,
    chances are your sites will
    > > look good in all major browsers except IE. For that
    we rely on IE hacks
    > > or
    > > workarounds.
    > >
    > > Learning html and CSS takes time and effort but
    it's very doable. You
    > > would
    > > be doing yourself a big favor by learning to work
    with code now. Design
    > > view is fine for some things, like typing content
    and adding a few
    images.
    > > But eventually you have to pop the hood to check
    the oil. If hiring a
    pro
    > > isn't an option, I suggest you purchase a solid
    template to work with.
    > > Money well-spent IMHO.
    > >
    http://www.projectseven.com/products/templates/
    > >
    > >
    > >
    > > --Nancy O.
    > > Alt-Web Design & Publishing
    > > www.alt-web.com
    > >
    > >
    > >
    > >
    > > "PunIntended" <[email protected]>
    wrote in message
    > > news:[email protected]...
    > >> Unfortunately, hiring someone is not an option
    for my friend -- the
    > > recession
    > >> has hit them hard -- etc.etc. I'm doing it as a
    favor.
    > >>
    > >> One additional question -- Why are only some of
    the image files moved
    > > when
    > >> viewing in mozilla? I dont understand how
    Dreamweaver arbitrarily
    > >> chooses
    > >> which are moved and which are not.
    > >>
    > >> Also, is laying out your site in 'design' mode
    simply a bad idea? It
    > > seems
    > >> like it looks / works fine with IE, and the
    majority of the layers are
    > > correct
    > >> in mozilla -- it just doesn't deal well with a
    few of the images.
    > >>
    > >> Thank you again for all your comments - - like
    I said, am sort of a
    > > beginner
    > >> -- just looking for the best method to fix the
    problem. If the best
    > > method is
    > >> explaing to the graphic designers their
    'vision' can't be accomplished,
    > >> so
    > > be
    > >> it. I just want to know how to go about
    attacking the browser
    > > compatibility.
    > >>
    > >
    > >
    >
    >

  • How do I make my animation look the same in different browsers?

    Hi!
    When I play my animation in different browsers it don't look the same as in the preview. In IE some of the parts of the animation have disappeared and in Chrome the pats are no longer in their right places. See picture below. 
    How do I do to make the animations look the same in different browsers?
    (In the end I want to use the animations in my captivate 8 project. )
    BR,
    M

    Ah, found the issue, the problem is with the name of the two images,
         genomförande    (instead you can use genomforande)
         Grå bakgrund     (instead you can use grabakgrund)
    Seems like IE is having issue with those special characters.
    hth,
    Vivekuma

  • HTML Snippets move around in different browsers

    I added an HTML Snippet (Skype button) and a Google map to a web site designed with iWeb. Both of these items move up or down in different browsers (Safari, Firefox, Internet Explorer). Is there any way to lock the position of these widgets, so they don't move? The page with these problems can be found at: http://www.follow-your-nose.com/fyn/Contact.html

    I have the same trouble, the strange thing is that out of 3 pages it works fine on 1, on the other 2 pages the HTML snippet moves up or down depending on the browser type.
    So why does it work on this 1 page ?
    Another problem I have is that links to recommend another site sometimes format themselves. I make them White Pink Grey, so in iWeb they work fine, but when published some of them suddenly being back to the original colors.
    Another problem I have is that some Amazon Ads do not work in the HTML snippets, why the **** is that ?
    iWeb *****, all that work for this not satisfying result.
    thanks for any help you might give me....
    the main concerned site is www.hongkong-experience.net you can see the problems on the what to do page, here the snippet moves as well as on the same page in german, it the french version it doesnt ??
    http://www.hongkong-experience.net/Whatto_see_and_do_in_HongKong.html
    http://www.hongkong-experience.net/Wastun_und_sehen_in_HongKong.html
    http://www.hongkong-experience.net/Quoifaire_et_voir_a_HongKong.html
    and here the links color themselves http://www.hongkong-experience.net/Bienvenuesur_notre_Guide_de_Voyage_de_HongKong.html
    thanks again for any feedback which might help me.
    Tom

  • Running Web Dynpro Applications in Different Browsers

    Hi,
    I runned an Web Dynpro Application in different browsers(Opera, Firefox and Internet Explorer). The problem is that in Firefox is running fine, but in Internet Explorer some controls are missing and in Opera I got an Error Page that say the following:
    An error has occurred:
    "Failed to process the request."
    Please contact your system administrator.
    This page was created by SAP NetWeaver. All rights reserved.
    Web Dynpro client:
    Nokia Series 80 Client
    Web Dynpro client capabilities:
    User agent: Opera/9.25 (Windows NT 6.0; U; en), client type: op6, client type profile: op6, ActiveX: disabled, Cookies: enabled, Frames: enabled, Java applets: disabled, JavaScript: enabled, Tables: enabled, VB Script: enabled
    Accessibility mode: false
    Web Dynpro runtime:
    Vendor: SAP, build ID: 7.0013.20070717142021.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:13:14[UTC], changelist=455669, host=pwdfm101), build date: Wed Nov 14 08:48:35 GMT-03:00 2007
    Web Dynpro code generators of DC agile.com/pmg_bonefish~webdynpro:
    SapDictionaryGenerationCore: 7.0013.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:57:42[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapMetamodelWebDynpro: 7.0013.20070703112649.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:00:50[UTC], changelist=454024, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCore: 7.0013.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:45:23[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationTemplates: 7.0013.20070717142021.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:15:27[UTC], changelist=455669, host=pwdfm101)
    SapWebDynproGenerationCTemplates: 7.0013.20070717142021.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:15:27[UTC], changelist=455669, host=pwdfm101)
    SapGenerationFrameworkCore: 7.0013.20060719095755.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:44:42[UTC], changelist=411255, host=PWDFM101.wdf.sap.corp)
    SapIdeWebDynproCheckLayer: 7.0013.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:04:26[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapMetamodelDictionary: 7.0013.20060719095619.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:54:53[UTC], changelist=411251, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCommon: 7.0013.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:45:30[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationCore: 7.0013.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:04:37[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapDictionaryGenerationTemplates: 7.0013.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:57:50[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    Web Dynpro code generators of DC sap.com/tcwddispwda: No information available!
    Web Dynpro code generators of DC sap.com/cafUIptn~common:
    SapDictionaryGenerationCore: 7.0013.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-08-07:13:26:06[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapMetamodelWebDynpro: 7.0013.20070703112649.0000 (release=645_VAL_REL, buildtime=2007-08-07:13:28:49[UTC], changelist=454024, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCore: 7.0013.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-08-07:13:14:35[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationTemplates: 7.0013.20070717142021.0000 (release=645_VAL_REL, buildtime=2007-08-07:13:42:07[UTC], changelist=455669, host=pwdfm101)
    SapWebDynproGenerationCTemplates: 7.0013.20070717142021.0000 (release=645_VAL_REL, buildtime=2007-08-07:13:42:07[UTC], changelist=455669, host=pwdfm101)
    SapGenerationFrameworkCore: 7.0013.20060719095755.0000 (release=645_VAL_REL, buildtime=2007-08-07:13:13:54[UTC], changelist=411255, host=PWDFM101.wdf.sap.corp)
    SapIdeWebDynproCheckLayer: 7.0013.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-08-07:13:32:11[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapMetamodelDictionary: 7.0013.20060719095619.0000 (release=645_VAL_REL, buildtime=2007-08-07:13:23:29[UTC], changelist=411251, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCommon: 7.0013.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-08-07:13:14:42[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationCore: 7.0013.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-08-07:13:32:21[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapDictionaryGenerationTemplates: 7.0013.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-08-07:13:26:13[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    Web Dynpro code generators of DC sap.com/tcwdcorecomp: No information available!
    J2EE Engine:
    7.00   patchlevel 109044.44
    Java VM:
    Java HotSpot(TM) Server VM, version: 1.4.2_09-b05, vendor: Sun Microsystems Inc.
    Operating system:
    Windows 2003, version: 5.2, architecture: x86
    I don´t know is the problem I have in both browsers Internet Explorer and Opera are from the browser or from the layout I´m using in Web Dynpro.
    regards

    Hi Aida,
    For getting an information of the Web Browsers supported by SAP NetWeaver, check out the following link:
    [http://service.sap.com/pam|http://service.sap.com/pam]
    To access the Product Availability Matrix (PAM), you will need a sUser Login Name.
    For Reference,
    http://help.sap.com/saphelp_nw04s/helpdata/en/79/23c7410400c717e10000000a155106/frameset.htm
    Regards,
    Alka.

  • I have just got an iMac 21" and it continuously freezes when it goes to sleep and also when the internet is trying to load, i have tried three different browsers but it still does it (safari, google chrome and firefox), does anyone know what is wrong?

    I have just got an iMac 21" and it continuously freezes when it goes to sleep and also when the internet is trying to load, i have tried three different browsers but it still does it (safari, google chrome and firefox), does anyone know what is wrong?

    To fix the freezing when sleeping problem go to System Preferences>Energy Saver and set 'Computer Sleep' to 'Never'. It seems there is a problem for some with Bluetooth failing to wake after sleep. This fixes it 100% for me and many others on here, until Apple issue a software update to address it.
    Not sure what to suggest on the internet problem. I assume you are connected and receive and send emails OK.
    Edit: To try to troubleshoot the internet issue maybe try turning the Firewall off: System Preferences>Security & Privacy>Firewall tab.

  • Are there any conflicts or problems having 2 browsers on the same computer using windows 7

    I have no experience with having different browsers on the same computer and want to know if there are any conflicts or problems before I download a second browser.

    There are no conflicts if you install multiple browsers to the same computer. You can do that just fine.

  • When I try to download the creative cloud the page doesn't load, I tried different browsers, still all I see are blue and gray boxes!

    When I try to download the creative cloud the page doesn't load, I tried different browsers, still all I see are blue and gray boxes!
    HELP!

    If you're facing this problem, just wait and it will work!

  • I can't install ADE on my PC, because as I try to open it a message of error appears to me: The application will be closed. I've already try with different browsers and also with the manual installation, but nothing..

    I can't install ADE on my PC, because as I try to open it a message of error appears to me: The application will be closed. I've already try with different browsers and also with the manual installation, but nothing..

    1
    Close all iWork applications
    2
    Uninstall Keynote; this must be done with an application remover tool to delete the installation properly. Appcleaner is known to work correctly for this purpose, it is free and can be downloaded from here: Appcleaner Download
    3
    empty the trash
    4
    shutdown the Mac and restart. After the start up chime, hold down the shift key until the apple logo appears
    let the Mac complete the start up procedure completely, it will take longer than usual as the hard drive is being repaired
    5
    Reinstall Keynote by logging into the Mac App Store using download / install

Maybe you are looking for