Page 1 of 2 12 LastLast
Results 1 to 10 of 17
  1. #1
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Contact Us and IE7 not playing nice!

    I'm using Zen 1.3.8, and IE7, on a windows xp computer.

    The Send button in my Contact Us form doesn't work.

    Contact Us

    It works just fine in Firefox and Safari, just not in IE7. In fact, it's not even clickable in IE7 on my computer.

    It just sits there, staring at me ,

    Anyway, , could someone please have a look and see what my malfunction is?

    Thanks!
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  2. #2
    Join Date
    Jun 2005
    Posts
    356
    Plugin Contributions
    0

    Default Re: Contact Us and IE7 not playing nice!

    Your page has a lot of html errors: http://validator.w3.org/check?uri=ht...Inline&group=0
    I believe the one causeing the issue is the unesscaped ampersand in the form action.
    Also, your CSS has several errors: http://jigsaw.w3.org/css-validator/v...ning=1&lang=en
    You also might try turning off the javascipt in your header thats running your flash. You really shouldn't have a javascript running outside of the head tag.
    2 + 2 = 5 for extremely large values of 2

    Pez Collectors Store •••••••• My Plugins List

  3. #3
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Contact Us and IE7 not playing nice!

    Quote Originally Posted by gothstone View Post
    Your page has a lot of html errors: http://validator.w3.org/check?uri=ht...Inline&group=0
    I believe the one causeing the issue is the unesscaped ampersand in the form action.
    Also, your CSS has several errors: http://jigsaw.w3.org/css-validator/v...ning=1&lang=en
    You also might try turning off the javascipt in your header thats running your flash. You really shouldn't have a javascript running outside of the head tag.
    Would you mind explaining all of that in more detail please? If I had any idea what you were talking about, I probably would have taken care of it already.

    Thanks for replying.
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  4. #4
    Join Date
    Jun 2005
    Posts
    356
    Plugin Contributions
    0

    Default Re: Contact Us and IE7 not playing nice!

    If you view the source of your contact page you have a line that reads
    Code:
    <form name="contact_us" action="http://www.theashbymint.com/index.php?main_page=contact_us&action=send" method="post">
    You should never put a & charachter in a link, in your code you should use &amp; instead. Now that I look closer, your real problem it that you have 2 form tags, you must have added one in your define pages editor.

    You should click on those links and read what they have to say. You need to track down the cause of each of those errors and fix it. Zencart code itself is clean, you might get 1 or 2 errors. All of the rest are from code you have added or changed. The "rules" of the w3 are more strict than any browser, but if you follow them to a T than your page will look the same and be useable in any browser. If not, then everyone gets a slightly (or dramaticaly) different site, and some may not be able to view it at all. Firefox and Safari are being user friendly and compensating for the code error, IE7 is not, so your send button is broken.

    In the template you have created, specificaly in your header, you are useing javascript to run fash. I don't know why, as thats pretty messy. Javascript should be avoided when possible, and it should always be run inside the html tag<head>.
    2 + 2 = 5 for extremely large values of 2

    Pez Collectors Store •••••••• My Plugins List

  5. #5
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Contact Us and IE7 not playing nice!

    Thanks, I got the contact us form working again. For some reason, can't remember why, I did add another form tag in the define page. Removed it and voila! Works like a charm now.

    Now, as for using java to run my header, it was the only way I could get it to work. If you can suggest a neater, cleaner way to run a .swf file in the header, without java, I would be very greatful.
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  6. #6
    Join Date
    Jun 2005
    Posts
    356
    Plugin Contributions
    0

    Default Re: Contact Us and IE7 not playing nice!

    Example, you will have to change sizes, file name and alt tag:

    Code:
    <object type="application/x-shockwave-flash" data="images/banner.swf" width="288" height="128">
    <param name="movie" value="images/banner.swf" />
    <img src="banner.gif" width="288" height="128" alt="banner" />
    </object>
    2 + 2 = 5 for extremely large values of 2

    Pez Collectors Store •••••••• My Plugins List

  7. #7
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Contact Us and IE7 not playing nice!

    Where would I make these changes that you suggest?
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  8. #8
    Join Date
    Jun 2005
    Posts
    356
    Plugin Contributions
    0

    Default Re: Contact Us and IE7 not playing nice!

    ./includes/templates/silverfish/common/tpl_header.php in place of your current java script calling the flash.
    2 + 2 = 5 for extremely large values of 2

    Pez Collectors Store •••••••• My Plugins List

  9. #9
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Contact Us and IE7 not playing nice!

    Nope. That doesn't work. Not at all. Sorry.

    Any other ideas?
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  10. #10
    Join Date
    Jun 2005
    Posts
    356
    Plugin Contributions
    0

    Default Re: Contact Us and IE7 not playing nice!

    What do you mean that didn't work? What did it do? Did you change the code to your needs? Ok, here's the exact code to put in.
    Code:
    <object type="application/x-shockwave-flash" data="includes/templates/silverfish/images/flash/logo.swf" width="760" height="132">
    <param name="movie" value="includes/templates/silverfish/images/flash/logo.swf" />
    </object>
    If that doesn't work, its probably a typo or something, but you could always go the overdone but absolute method:
    Code:
    <!--[if !IE]> -->
    <object type="application/x-shockwave-flash"
      data="includes/templates/silverfish/images/flash/logo.swf" width="760" height="132">
    <!-- <![endif]-->
    
    <!--[if IE]>
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
      codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
      width="760" height="132">
      <param name="movie" value="includes/templates/silverfish/images/flash/logo.swf" />
    <!--><!--dgx-->
      <param name="loop" value="true" />
      <param name="menu" value="false" />
    
      <p>Your <b>browser</b> sucks!</p>
    </object>
    <!-- <![endif]-->
    2 + 2 = 5 for extremely large values of 2

    Pez Collectors Store •••••••• My Plugins List

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v139h Image Handler3/Lightbox not playing nice with mobile devices....
    By g00glethis1 in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 19 Sep 2012, 07:56 AM
  2. PayPal not playing nice with Authorize.net - v1.3.8a
    By Stuff4Toys in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 20 Apr 2011, 12:56 AM
  3. Coupon and Paypal not playing nice!
    By BEatMaKeR in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 0
    Last Post: 9 Aug 2007, 05:39 PM
  4. Replies: 1
    Last Post: 22 Feb 2007, 09:52 AM

Posting Permissions

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