http://www.urlgone.com/9667b9/
Hi,
I’m having a couple of issues on my site, but only in Chrome, which is surprising since usually it’s IE that I can’t get to work properly.
-
The clickable images in the body of the home page have borders in IE and FF as I want them to, but none appear in Chrome. Any idea what might be the issue here? I know that my stylesheet is a bit of a mess, but I must be missing a few lines somewhere.
-
The forms in the header and left column are misaligned with the text image next to them, again only in Chrome. I’m guessing this is a CSS issue but I really have no idea where to start with this.
Just in case, here’s the relevant section of header.php:
<table border="0" width="100%" cellspacing="0" cellpadding="1">
<tr class="headerNavigation">
<td class="headerNavigation"> <?php echo $breadcrumb->trail(' › '); ?></td>
<?php
//---PayPal WPP Modification START ---//
$show_user_options = tep_paypal_wpp_show_user_options();
?>
<td align="right" class="headerNavigation">
<?php if ($show_user_options) { ?>
<a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_LOGOFF; ?></a> |
<?php } ?>
<a href="<?php echo tep_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a> |
<img src=images/cart_icon.gif align="top" alt="shopping cart" width="25" height="21" style="margin:-2px -4px -2px -2px;">
<a href="<?php echo tep_href_link(FILENAME_SHOPPING_CART); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> |
<a href="<?php echo tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CHECKOUT; ?></a> |
<?php echo tep_draw_form('quick_find', tep_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', $request_type, false), 'get') . BOX_HEADING_SEARCH . tep_draw_input_field('keywords', '', 'size="10" maxlength="30" style="width: ' . (BOX_WIDTH-90) . 'px"') . ' ' . tep_hide_session_id() . tep_draw_hidden_field('search_in_description' , '1') . tep_image_submit('button_search.gif', BOX_HEADING_SEARCH, 'align="top"') . '</form>';?>
</td>
<?php //---PayPal WPP Modification END ---// ?>
</tr>
</table>
Thanks