Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Tolucky

Archived
  • Posts

    2
  • Joined

  • Last visited

Profile Information

  • Real Name
    Tolucky

Tolucky's Achievements

  1. Goodday, I have a problem with the Hover state in IE. Found a fix with the hoverstate in IE, to include the <input> with an javascript function, the hover state is working, only the "function tep_image_button" buttons don't work anymore. I have made 2 html_output.php files, 1 for IE en 1 for FF, because FF don't like this on some buttons. I tried the "function tep_image_button" to use an mouseclick event, and this was working to. only i don't know how to do this correctly. this works.. function tep_image_submit($image, $value = '-AltValue-', $parameters = '') { global $language; $css_submit = '<a href="java script: void(0)"><input type="submit" class="cssButton" value="' . tep_output_string($value) . '" /></a>'; return $css_submit; } this is not working.. function tep_image_button($image, $value = '-AltValue-') { global $language; $css_submit = '<a href="java script: void(0)"><input type="submit" class="cssButton" value="' . tep_output_string($value) . '" /></a>'; return $css_submit; } this works.. <a href="java script: void(0)"><input type="submit" class="cssButton" value="Winkelwagen bijwerken" /></a> this is not working.. <a href="http://yottazone.dyndns.info/shop/checkout_shipping.php"><a href="java script: void(0)"><input type="submit" class="cssButton" value="Kassa" /></a></a> Anyone has a clue for me, to activate the hover state for IE for the "function tep_image_button" Thanks
  2. Goodday, I have a problem with the Hover state in IE. Found a fix with the hoverstate in IE, to include the <input> with an javascript function, the hover state is working, only the "function tep_image_button" buttons don't work anymore. I have made 2 html_output.php files, 1 for IE en 1 for FF, because FF don't like this on some buttons. I tried the "function tep_image_button" to use an mouseclick event, and this was working to. only i don't know how to do this correctly. this works.. function tep_image_submit($image, $value = '-AltValue-', $parameters = '') { global $language; $css_submit = '<a href="java script: void(0)"><input type="submit" class="cssButton" value="' . tep_output_string($value) . '" /></a>'; return $css_submit; } this is not working.. function tep_image_button($image, $value = '-AltValue-') { global $language; $css_submit = '<a href="java script: void(0)"><input type="submit" class="cssButton" value="' . tep_output_string($value) . '" /></a>'; return $css_submit; } this works.. <a href="java script: void(0)"><input type="submit" class="cssButton" value="Winkelwagen bijwerken" /></a> this is not working.. <a href="http://yottazone.dyndns.info/shop/checkout_shipping.php"><a href="java script: void(0)"><input type="submit" class="cssButton" value="Kassa" /></a></a> Anyone has a clue for me, to activate the hover state for IE for the "function tep_image_button" Thanks
×
×
  • Create New...