Spry accordion browser compatability issues

I am building my first site and was in the process of checking each page for browser compatability. this certain page has spry accordians and I have some error messages that I don't understand.
The first one says Line 48 has 2 errors in SpryAccordian.css.  I don't have any indication of what the problem is and where exactly line 48 is on the page. Is there a way for it to take you to that exact spot to show you where the problem is?
I clicked on get more info. and came to a page that doesn't seem to be addressing what my issue is. Don't understand that part.
How do I fix this and why did it happen?

Type cmd / ctrl + , for the go to line number window in DW.

Similar Messages

  • Spry Accordion browser issue

    When I preview my page in browser, there is a dotted line all
    around the spry accordion widget. I've looked through the css and
    can't find where that is. Any idea how to eliminate this?

    Malinki8 wrote:
    > When I preview my page in browser, there is a dotted
    line all around the spry accordion widget. I've looked through the
    css and can't find where that is. Any idea how to eliminate this?
    I believe what you're talking about can be fixed by adding
    the following line to the .Accordion selector in the
    SpryAccordion.css file:
    outline:none;
    FWIW, you should Spry questions over in the Spry forum as
    there are more folks with Spry experience that hang out there:
    http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=72&catid=602
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | WebAssist Extensioneer
    | Adobe Community Expert

  • Firefox browser compatibility issues webdynpro for java application

    Hi,
    we have migrated SAP net weaver SP 21 and also to IE8 and Firefox. we have compatibility issues in Firefox like input fields, labels and command buttons are not properly aligned when comparing with IE 8.
    Could you please give suggestions to fix this problems.
    Thanks.
    Parthiban

    Hi Parthiban,
    Please check the SAP NetWeaver 7.0 Product Availability Matrix (PAM) in the Service Market Place http://service.sap.com/pam.
    [Check here |http://saplab.org/wp-content/SAP-NetWeaver-7.0-PAM.pdf]and verify you firefox browser versions compatibie for webdynpro
    Hope it will helps
    Regards
    Arun Jaiswal

  • Spry Accordion Hover/Active Issue

    I have designed a spry accordion widget for a FAQ page and within Dreamweaver CS6 it is fully functional.  The color I've selected doesn't occur with a hover or an active tab once EVERYTHING is uploaded.  Below is a live link to the problem page, my Spry CSS and layout CSS as well as a screenshot of the proper functionality occuring in Dreamweaver.  Thoughts?
    The problem page:
    http://pauldhart.com/RideTTF_website/faq.html
    Spry CSS
    @charset "UTF-8";
    /* SpryAccordion.css - version 0.5 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    /* This is the selector for the main Accordion container. For our default style,
    * we draw borders on the left, right, and bottom. The top border of the Accordion
    * will be rendered by the first AccordionPanelTab which never moves.
    * If you want to constrain the width of the Accordion widget, set a width on
    * the Accordion container. By default, our accordion expands horizontally to fill
    * up available space.
    * The name of the class ("Accordion") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style the
    * Accordion container.
    .Accordion {
        overflow: hidden;
    /* This is the selector for the AccordionPanel container which houses the
    * panel tab and a panel content area. It doesn't render visually, but we
    * make sure that it has zero margin and padding.
    * The name of the class ("AccordionPanel") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style an
    * accordion panel container.
    .AccordionPanel {
        margin: 0px;
        padding: 0px;
    /* This is the selector for the AccordionPanelTab. This container houses
    * the title for the panel. This is also the container that the user clicks
    * on to open a specific panel.
    * The name of the class ("AccordionPanelTab") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style an
    * accordion panel tab container.
    * NOTE:
    * This rule uses -moz-user-select and -khtml-user-select properties to prevent the
    * user from selecting the text in the AccordionPanelTab. These are proprietary browser
    * properties that only work in Mozilla based browsers (like FireFox) and KHTML based
    * browsers (like Safari), so they will not pass W3C validation. If you want your documents to
    * validate, and don't care if the user can select the text within an AccordionPanelTab,
    * you can safely remove those properties without affecting the functionality of the widget.
    .AccordionPanelTab {
        border-top: solid 1px black;
        border-bottom: solid 1px gray;
        margin: 0px;
        padding: 2px;
        cursor: pointer;
        -moz-user-select: none;
        -khtml-user-select: none;
        background-image: url(/content-opaque.png);
        background-attachment: fixed;
        background-repeat: repeat;
        font-family: Verdana, Geneva, sans-serif;
        color: #FFF;
        background-color: #300;
        font-size: 12px;
    /* This is the selector for a Panel's Content area. It's important to note that
    * you should never put any padding on the panel's content area if you plan to
    * use the Accordions panel animations. Placing a non-zero padding on the content
    * area can cause the accordion to abruptly grow in height while the panels animate.
    * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
    * Content container.
    * The name of the class ("AccordionPanelContent") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style an
    * accordion panel content container.
    .AccordionPanelContent {
        margin: 0px;
        padding: 2px;
        background-image: url(../infobkgd.png);
        background-attachment: fixed;
        background-repeat: repeat;
        font-family: Verdana, Geneva, sans-serif;
        font-size: 12px;
        color: #FFF;
        overflow: hidden;
        height: 40
    [x;
        height: 100%;
    /* This is an example of how to change the appearance of the panel tab that is
    * currently open. The class "AccordionPanelOpen" is programatically added and removed
    * from panels as the user clicks on the tabs within the Accordion.
    .AccordionPanelOpen .AccordionPanelTab {
        background-color: #000033;
    /* This is an example of how to change the appearance of the panel tab as the
    * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
    * and removed from panel tab containers as the mouse enters and exits the tab container.
    .AccordionPanelTabHover {
        color: #FFFFFF;
        background-color: #003;
    .AccordionPanelOpen .AccordionPanelTabHover {
        color: #FFFFFF;
    /* This is an example of how to change the appearance of all the panel tabs when the
    * Accordion has focus. The "AccordionFocused" class is programatically added and removed
    * whenever the Accordion gains or loses keyboard focus.
    .AccordionFocused .AccordionPanelTab {
        background-color: #003;
    /* This is an example of how to change the appearance of the panel tab that is
    * currently open when the Accordion has focus.
    .AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
        background-color: #000033;
    /* Rules for Printing */
    @media print {
      .Accordion {
      overflow: visible !important;
      .AccordionPanelContent {
      display: block !important;
      overflow: visible !important;
      height: auto !important;
    Layout CSS
    <!doctype html>
    <!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
    <!--[if IE 7]>    <html class="ie7 oldie"> <![endif]-->
    <!--[if IE 8]>    <html class="ie8 oldie"> <![endif]-->
    <!--[if gt IE 8]><!-->
    <html class="">
    <!--<![endif]-->
    <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Donate Today!</title>
    <link href="boilerplate.css" rel="stylesheet" type="text/css">
    <link href="_css/donatepage.css" rel="stylesheet" type="text/css">
    <link href="SpryAssets/SpryMenuBarDonate.css" rel="stylesheet" type="text/css">
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css">
    <!--
    To learn more about the conditional comments around the html tags at the top of the file:
    paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
    Do the following if you're using your customized build of modernizr (http://www.modernizr.com/):
    * insert the link to your js here
    * remove the link below to the html5shiv
    * add the "no-js" class to the html tags at the top
    * you can also remove the link to respond.min.js if you included the MQ Polyfill in your modernizr build
    -->
    <!--[if lt IE 9]>
    <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <script src="respond.min.js"></script>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
    </head>
    <body>
    <div class="gridContainer clearfix">
      <div id="header"><img src="RTTF-banner.jpg" alt="Ride to the Flags VI"></div>
      <div id="navigation">
        <ul id="donatemenu" class="MenuBarHorizontal">
          <li><a href="profile.html">home</a>      </li>
          <li><a href="theride.html">the ride</a></li>
          <li><a href="donate.html">donate</a>      </li>
          <li><a href="#" class="MenuBarItemSubmenu">gallery</a>
            <ul>
              <li><a href="photo-gallery.html">photo</a></li>
              <li><a href="video-gallery.html">video</a></li>
            </ul>
          </li>
          <li><a href="faq.html">FAQs</a></li>
          <li><a href="contact.html">contact</a></li>
        </ul>
      </div>
      <span class="AccordionPanel">
      <div class="AccordionPanelTab"></div>
      </span>
      <div id="faq-content">
        <div id="faq-accordion" class="Accordion" tabindex="0">
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: Is this ride still going on?</div>
            <div class="AccordionPanelContent">A: Yes</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: What is the date for this year’s ride?</div>
            <div class="AccordionPanelContent">A: Saturday, September 7th.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: What time does check-in/registration open?</div>
            <div class="AccordionPanelContent">A: Online registration will begin in May.  Check-in at 8:00am on September 7th.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: Where is check-in?</div>
            <div class="AccordionPanelContent">A: Check-in will be just south of PCH on Las Posas Rd (right before Gate 3 of the Naval Base).</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: Will the route be the same?</div>
            <div class="AccordionPanelContent">A: We have changed the route this year few a few reasons.  You can visit the route map to see.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: We’re not doing the ride but we would like to come out and watch the bikes as they drive by.  What time will you be on our street?</div>
            <div class="AccordionPanelContent">A: Given our start at 10:30am, we will be reaching the following streets at these times:</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: What is the minimum amount to give to ride in this ride?</div>
            <div class="AccordionPanelContent">A: $35/rider $20/passenger</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: What does that give me?</div>
            <div class="AccordionPanelContent">A: Patch, Food ticket, and drink ticket</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: Why must we raise/give a minimum amount this year?</div>
            <div class="AccordionPanelContent">A: As you know, for the first five years, the Ride to the Flags ran on an any-donation-goes basis.  However, as we got larger, the costs associated with putting the ride together grew immensely.  The minimum donation allows for us to cover the costs for the ride.  However, we try our best to bring on as many sponsors as possible to help cover our costs so that we can ensure that your donation is going to good use.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: Can I give more money than the registration fee?</div>
            <div class="AccordionPanelContent">A: Of course. </div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: What if we raise a lot of money for the cause?</div>
            <div class="AccordionPanelContent">A: The White Heart Foundation is giving out some small prizes for our top donors.   Those will be announced at a later date.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: How will check-in be different now that there is pre-registration?</div>
            <div class="AccordionPanelContent">A: There will be a pre-registered check-in line and another line for those looking to just show up the day of.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: What kinds of payments are accepted?</div>
            <div class="AccordionPanelContent">A: We prefer you use our online fundraising application Razoo.com that can be found on this website for your pre-registration. </div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: I ride a trike, can I participate?</div>
            <div class="AccordionPanelContent">A: Yes</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: Are scooters allowed?</div>
            <div class="AccordionPanelContent">A: Eh, sure, why not?</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: Will there be celebrities in attendance?</div>
            <div class="AccordionPanelContent">A: Probably.  We usually do not know about their appearance ahead of time. </div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: Are you getting tired of all of my questions?</div>
            <div class="AccordionPanelContent">A: A little</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: What is happening on the base now that the Celebration of Freedom is at the end of the ride?</div>
            <div class="AccordionPanelContent">A: Memorial service and wreath laying and maybe a special guest.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: Will there be live music at the Celebration of Freedom?</div>
            <div class="AccordionPanelContent">A: There will.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: I don’t ride a motorcycle but can I still come to the Celebration of Freedom?</div>
            <div class="AccordionPanelContent">A: Yes.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: What is my cost?</div>
            <div class="AccordionPanelContent">A: General Public $40. Student $20.  Bikers the day of $40.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: If I preregister for the ride and decide to just come to the Celebration of Freedom at the end of the ride, will I get my free patch, food ticket, and drink ticket?</div>
            <div class="AccordionPanelContent">A: No.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: What are costs of food and drink tickets?</div>
            <div class="AccordionPanelContent">A: Food - $5,  Drink - $2,  Beer - $5</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: WAIT?! THERE’S GOING TO BE BEER?!!!!</div>
            <div class="AccordionPanelContent">A:  Yes.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: That’s awesome.  I love you.</div>
            <div class="AccordionPanelContent">A: Control yourself.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: Will there be vendors during the Celebration of Freedom?!</div>
            <div class="AccordionPanelContent">A: Yes! For the first time ever, we give to you….motorcycle vendors.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: I'm a vendor, how do I reserve a spot?</div>
            <div class="AccordionPanelContent">A: Click here and fill out our application.  It’s a lot easier than taking the S.A.T.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: Can I sponsor the Celebration of Freedom?</div>
            <div class="AccordionPanelContent">A: Certainly!  Click here for our sponsorship packet.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: Can my motorcycle club ride together?</div>
            <div class="AccordionPanelContent">A: If you come together, sign in together, and hold hands.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: Are we doing big flags up front this year?</div>
            <div class="AccordionPanelContent">A: Yup</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: Last year the riders got split up, how are you fixing that this year?</div>
            <div class="AccordionPanelContent">A:  We’re filing certain permits and paying astronomical fees to shut down traffic for 30 minutes on a Saturday so that we don’t get split up.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: Last year the ride ended up being really slow, will it be slow this year?</div>
            <div class="AccordionPanelContent">A: We admit it was slow.  We know, we know.  Now that we are closing the roads as we all move through, we’ll be allowed to pick up the pace a little.  Also, the new route allows us go faster through town.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: I'm a police officer but will be riding as a civilian. Can I bring my firearm on base?</div>
            <div class="AccordionPanelContent">A: The base will not allow that.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: I want to create a donating team, where do I start?</div>
            <div class="AccordionPanelContent">Content 34</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: Can I start a donating team for my motorcycle group to cover all our registration costs?</div>
            <div class="AccordionPanelContent">A: Negatory.  Every individual is his/her own team. </div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: I don't have a motorcycle, can I still attend?</div>
            <div class="AccordionPanelContent">A: Yes, you can attend both the event at the Naval Base and the Celebration of Freedom in Malibu.</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">Q: What is the WHF?</div>
            <div class="AccordionPanelContent">A: The White Heart Foundation was created to help support our community military, police, and fire.</div>
          </div>
        </div>
      </div>
      <div id="footer">This is the content for Layout Div Tag "footer"</div>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("donatemenu", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    var Accordion1 = new Spry.Widget.Accordion("faq-accordion");
    </script>
    </body>
    </html>
    Screenshot of how it looks locally in Dreamweaver:

    SpryAccordion.css
    You have an error that is killing the rest of your code shown below in red.  Remove it.
    .AccordionPanelContent {
        margin: 0px;
        padding: 2px; /**suggest using 12px or more**/
        background-image: url(../infobkgd.png);
        background-attachment: fixed;
        background-repeat: repeat;
        font-family: Verdana, Geneva, sans-serif;
        font-size: 12px;  /**suggest using 16px or more**/
        color: #FFF;
        overflow: hidden;
        height: 40
    [x;
        height: 100%;
    Nancy O.

  • Browser compatibility issues with different versions of IE

    I'm looking for an online resource or book on identifying/troubleshooting JSP browser compatiblility issues focusing on recent versions of IE (5.0 - 6.0).
    Any sugguestions?

    A JSP runs on a server. It is actually a servlet that merely outputs HTML (usually) to the browser. Your browser does not (really) know the difference between a JSP and a static HTML page and PERL cgi generated page. There is no interaction what-so-ever between the JSP portion and your browser. There will not be any books about compatibility issues between JSP and browsers since its a non-issue.
    The previous reply suggesting JavaScript conflicts is entirely true. If you want a flipping nightmare job, write javascript that is compatible on NN 3.0 and above and IE 4.0 and above. It's a godd**ned mess.

  • Browser compatibility issue with IE6/7

    Hello,
    I created my webpage in dreamweaver on a MAC.  I have viewed my page(s) A-OK in Safari and firefox however I am being told that my page is not viewing properly on Internet Explorer.  I then found the browser compatibility feature to test the page in Dreamweaver.  What I have found is that I have browser support problems...this is the error from my index page - which is actually on all my pages!
    un-scrollable content bug:
    If one or more absolutely-positioned elements are placed within a relatively positioned element with no assigned dimensions, either no scrollbar will appear at all, or it will not extend far enough to view all of the content. (Note: This bug will not affect your page if the content in the AP element does not extend beyond the height of the viewport.)
    Affects: Internet Explorer 6.0
    Likelihood: Possible
    This bug is on line 56:   <div style="position:relative">
    This issue is on all my pages...please help
    I am just not sure how to solve this problem - I am more of a designer than a coder.  Any help whatsoever to point me in the right direction is most graciously appreciated!!!
    My webpage URL is: lifeforcemd ah yes that is a .com extension - lifeforcemd.com

    Hi kadarusastry,
    This issue is about the browser compatibility.
    Please add your SharePoint site into compatibility view in IE 9 or IE 10.
    Or, use IE 8 mode in browser mode for IE 9 or IE 10.
    About how to add site into compatibility view, you can refer to the link:
    http://support.microsoft.com/kb/2536204
    Note: the settings for IE 9 and IE 10 are same.
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Spry accordion and #wrapper issue

    Hi
    I am in the process of trying to put together a portfolio site as part of a CIW course. If you look at the current site www.jmacphot.com you will see on the equipment page I have tried to add a spry accordion and then a spry tabbed menu inside the accordion. However you will see that when I insert a large amount of information into the content area it pushes the tab over the footer and does keep the footer at the very bottom of the page... I am stumped as I have not set any specific height on my CSS to keep moving.
    Can someone please advise where I might be going wrong here. Sorry if this question has been asked repeatedly but I am very new to web design.
    Your help with this is greatly appreciated!
    Regards
    John

    Thanks ben, I initially thought if I left the height of my wrapper blank and also the height of the spry content blank they would expand as more information was entered? Is there possibly and issue with CSS hierarchy?
    Thanks again for your help!!
    John

  • Browser Compatibility Issue with IE9 and IE 10

    Hi Everybody,
    I have a page which contains pageviewer Webpart, which redirects to the other page the problem is in IE 8 this works good but comes to IE9 and IE 10 the page is not displaying on the page but link is working good. Can any one please give me suggestions on
    this?
    Thanks and Regards,
    kadaruSastry

    Hi kadarusastry,
    This issue is about the browser compatibility.
    Please add your SharePoint site into compatibility view in IE 9 or IE 10.
    Or, use IE 8 mode in browser mode for IE 9 or IE 10.
    About how to add site into compatibility view, you can refer to the link:
    http://support.microsoft.com/kb/2536204
    Note: the settings for IE 9 and IE 10 are same.
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Browser Compatability Issue

    Hey
    "Hell is other browsers!"
    I am working with a site that works violently different in IE8 vs. IE7 and of coarse completely different from FF and Safari (which is how I want it to look).  Could someone with browser compatability expertise tell me why my content shifts to the right 30 or so pixels in IE7 and disappears in IE8.  I want it to render the way FF does and I have yet to find a satisfactory solution.
    http://www.justbe-graphics.com
    Thanks.

    Hey,
    Nevermind.  It seems the IE is more picky than everyone else with the position:absolute versus the position:relative CSS rule.
    Thanks anyway,
    Brett

  • EP 7.3 Browser compatability issue

    Hi All,
    We have implemented EP 7.3 SP 04. We could not access the portal in chrome or IE 11. It is giving an error that "Could not open iView. The iView is not compatible with your browser, operating system, or device. Contact your system administrator for more information."
    so we have implemented the SAP Note  1666862 - Allow other browsers to access the portal.
    and include chrome () as the supported browser.  and now we have upgraded the portal to SP 10. But still we could not access the portal in Google Chrome. Please help me to resolve this issue.
    Regards,
    Malar

    Hi Saar,
    It is already been added but of no use. that is what i have mentioned in my previous communication as
    " include chrome () as the supported browser.  and now we have upgraded the portal to SP 10."
    still the portal is not accessible in chrome.but it is accessible in IE 11 & Firefox 28.0. Please help me to resolve this.
    Regards,
    Malar

  • Browser Compatibility Issues

    Hi!  I have a live website at www.blakeschlawin.com.  I just realized yesterday that it is messed up on Internet Explorer browsers.  Can anyone please help with how to fix this?  The main issue is that the "privacy policy" page is always on the screen...
    Thanks so much!
    Blake

    I'm not seeing the issue here in IE9 on Windows 7.
    Run your page through the validator here:
    http://validator.w3.org/
    You have some errors that could be causing certain versions of IE to have fits. If you clean up the errors and it is still an issue, post back and we can take a closer look.

  • Browser compatibility issues in DW cs4

    I am using a pre-made dreamweaver template. I tested the
    browsers in dreamweaver and things were okay, but when I uploaded
    the site to my host account to show someone everything is shifted
    to the left, and the site is all one solid color. It is okay in the
    current IE browser though. How do I remedy this situation?
    www.mindembody.com

    > www.mindembody.com
    fix the path to the css stylesheet, then upload it.
    It has to be inside this Local Site Folder.
    @import url("file:///C|/Users/Lynn/Desktop/styles.css");
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • OS 9.1 browser compatibility issue: DSL requires IE 5.3 or Safari 1.0

    I am running OS 9.1 on a G4. I just subscribed to ATT/Yahoo DSL, and they say they support OS 9.1, but their browser requirements for Mac are IE 5.3 or Safari 1.0. Problem is, neither of these are supported in my OS. What browser can I download, and from where, that would allow me internet access? After numerous calls to ATT/Yahoo support, they suggested I contact Mac support for help.
    G4 desktop   Mac OS 9.1.x  

    Hi, NeedHelp -
    Welcome to Apple's Discussions.
    Sometimes ISP providers are not too savvy on Mac things - they don't understand Macs, and fear what they don't know; as a result, they fall back on a few printed words someone else wrote, treating that as law.
    It may well be that IE 5.1.7, the last version released for Mac OS 9, will work fine in spite of what your ISP states. The only way to find out is to try it. If you do not already have a copy of it, you can download it from one of these sites -
    http://www.download.com/3000-2143-10217338.html
    http://www.softwarearchives.com/macintosh/software_details.cfm?Cat=2&SubCat=56&i d=30257
    http://browsers.evolt.org/?ie/mac/5.1.7_Classic
    For what it is worth, I use IE 5.1.7 exclusively via DSL. My ISP has no problem with it (they do not state any software requirements), nor should they - communicating with the web is a matter of using the right protocols, which just about all browsers do.
    Yes, there are some newer pages and sites which do not display well, or at all, in IE 5.1.7 - but that is a result of how such a site has been coded. It takes extra effort to make a site displayable by a lot of different browsers, and some constructors of sites are not willing to do that. Also, some sites have been fancied up with features which older browsers are just not capable of displaying, regardless of what plug-ins are installed - that's going to happen.

  • Mobile browser compatability issue

    I created animation using edge animate but the it is going haywire on mobile browsers like chrome & opera but its working fine on the default iOS & android browser. Any solutions for this problem?

    Hey,
    Nevermind.  It seems the IE is more picky than everyone else with the position:absolute versus the position:relative CSS rule.
    Thanks anyway,
    Brett

  • Browser compatability issue with jdeveloper?

    Hi,
    I am using jdev 11.1.2.3 for this i am using browser mozilla 23.0.1  for this one my page is not working but it open can't do any operation
    can any one help me which suitable for jdev 11.1.2.3
    Thank you

    Hi, Timo
    Actually it's running in another browser like chrome and IE but not working in mozilla firefox
    I am running  AdminMain.jspx?_adf.ctrl-state=18i26bivut_3 page ..
    Thank you.

Maybe you are looking for

  • Error when invoking request from BPEL to SAP

    Hi I have problem when invoking request from BPEL project to SAP R/3. I use Oracle SOA Suite 10.1.3.1 and Oracle AS Adapter 10.1.3.1. I created BPEL project that call SAP service that I have created from Application Explorer. When I run The BPEL proj

  • Problem when installing Solaris 10

    I've read that there is a post with the same problem I have, but I found no solution there. So I made this tread, hoping someone willing to help me. OK, here is the story... I have tried several times to install Solaris 10, from DVD to my laptop Dell

  • Custom keyboard shortcuts and editing multiple layers in Flash CS4

    Hi, all - CS3 -> CS4 transition newb here who's getting increasingly frustrated with the new motion tweens; however, for this project, I'm working in a 3D space and require using them, so I'm dealing with this bit by painful bit. I found the tip abou

  • Problem with Compression (Deflater & GZip)

    Hi All, I've large data as a String which I need to save in Oracle in VARCHAR2 column. As Varchar2 allows maximum of 4000 characters, I wish to compress this String and save in DB. I tried to compress the String using Delfater and GZip. In both metho

  • Rename a Domain Controller

    How do i rename Domain Controller name in Windows Server 2008, Windows Server 2008 R2 and Windows Server 2012 R2