Results 1 to 3 of 3

Thread: page showing in Firefox but not in IE

  1. #1
    Join Date
    Jul 2010
    Posts
    64
    Thanks
    23
    Thanked 0 Times in 0 Posts

    Default page showing in Firefox but not in IE

    Hello,

    I have a question, my FAQ page, is not showing in IE nor on my iPad, but it is showing in Firefox. I have no idea why but it think it might have to do something with the javascript code.

    Hopefully someone knows what's wrong,
    Rosalie
    Last edited by jscheuer1; 08-29-2011 at 01:59 PM. Reason: remove broken link

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Not javascript, it looks like a cut and paste typo.

    Get rid of this (highlighted):

    Code:
     . . . heet" type="text/css" media="screen" href="navbar.css" />
    <link rel="stylesheet" type="text/css" media="screen" href="navbar2.css" />
    <style type="text/css">
    <!--
    #wrapper {
    width: 950px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    font-family: Arial, Helv . . .
    Add this (highlighted):

    Code:
     . . . tion1 {		display:block;
    		
    		color:#e60e63;
    		text-decoration:none;
    		font-size:12px;
    		outline:0;
    		cursor:pointer;
    		cursor:hand;
    }
    </style>
    </head>
    <body>
    <div id="wrapper"><img alt="" width="728" hei . . .
    Get rid of this (highlighted):

    Code:
     . . . d="email">
    <form id="email" method="post" name="email" action="email.php">Sign up for our Email updates! <input style="background-color: #e7e7e7" size="30" name="email" /> <input value="Submit" type="submit" name="submit" /> </form></div>
    
    <div class="copyrightdiv">Copyright &copy; 2011 Some_Site.com. All rights reserved. </div></div></div></div></div></div>
    </style>
    <script type="text/javascript"> 
        var currentAnswer = null;
        function displayAnswer(ans) {
            var v = document.getElementById(ans);
            if (currentAnswer)
                currentAnswer.style.display = "none";
            currentAnswer = v;
            currentAnswer.style.display = "block";
        }
    </script>
    </body>
    </html>
    Last edited by jscheuer1; 08-29-2011 at 01:58 PM. Reason: remove reference to the site at user request
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. The Following User Says Thank You to jscheuer1 For This Useful Post:

    Rosalie (08-01-2011)

  4. #3
    Join Date
    Jul 2010
    Posts
    64
    Thanks
    23
    Thanked 0 Times in 0 Posts

    Default

    Thank you very much! The the copy pasting indeed appeared to cause the problem. Thanks to your suggestions it is solved now.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •