josy Posted April 27, 2008 Posted April 27, 2008 i have uploaded my own header but am getting a space to the side like this: http://magical-scraps.com Can anyone tell me how to fix this so theres no gap please, it must be something simple but i just cant find it.
perfectj Posted April 27, 2008 Posted April 27, 2008 do you mean the gap on the right? Im a total newb at this but, have you just tried making the banner a bit wider? keep in mind (and again im a total newb) viewing the page with different screen resolutions will make it look different - my web guru(bless her) made mine so that there is an image at the right that just keeps repeating itself no matter how wide the screen is
ruizerwin Posted April 27, 2008 Posted April 27, 2008 <tr class="header"> <td valign="middle"><a href="http://magical-scraps.com/index.php?osCsid=8b2c5bf06c3d7702530f457ba2f005f2"><img src="images/store_logo.png" border="0" alt="Magical Scraps" title=" Magical Scraps " width="756" height="150"></a></td> <td align="right" valign="bottom"><a href="http://magical-scraps.com/account.php?osCsid=8b2c5bf06c3d7702530f457ba2f005f2"></a> <a href="http://magical-scraps.com/shopping_cart.php?osCsid=8b2c5bf06c3d7702530f457ba2f005f2"></a> <a href="http://magical-scraps.com/checkout_shipping.php?osCsid=8b2c5bf06c3d7702530f457ba2f005f2"></a> </td> </tr> Remove this: In your header i think this is your problem. Also put 100% width on you td Hope it help Erwin D. Padilla Web Developer and Linux Admin
josy Posted April 27, 2008 Author Posted April 27, 2008 Thanks for replying, i have tried making the banner a bit bigger but it just stretches even more.
josy Posted April 27, 2008 Author Posted April 27, 2008 Oh Erwin we must have posted at the same time i will go and try that now thanks.
josy Posted April 27, 2008 Author Posted April 27, 2008 Oh Erwin we must have posted at the same time i will go and try that now thanks. were will i find that code?
ruizerwin Posted April 27, 2008 Posted April 27, 2008 were will i find that code? On your header file /includes/header.php open your file with any editor or dreamweaver... Look / search for <a href="http://magical-scraps.com/account.php? or any word Erwin D. Padilla Web Developer and Linux Admin
josy Posted April 27, 2008 Author Posted April 27, 2008 Thank you very much it worked your a star :) , theres only 1 little gap left now below the header next to the checkout option.
ruizerwin Posted April 27, 2008 Posted April 27, 2008 Thank you very much it worked your a star :) , theres only 1 little gap left now below the header next to the checkout option. Look for checkout Remove <td align="right" class="headerNavigation"><a href="http://magical-scraps.com/account.php" class="headerNavigation">My Account</a> | <a href="http://magical-scraps.com/shopping_cart.php" class="headerNavigation">Cart Contents</a> | <a href="http://magical-scraps.com/checkout_shipping.php" class="headerNavigation">Checkout</a> </td> Look it on the On your header.php /includes/header.php Erwin D. Padilla Web Developer and Linux Admin
josy Posted April 27, 2008 Author Posted April 27, 2008 Look for checkout Remove <td align="right" class="headerNavigation"><a href="http://magical-scraps.com/account.php" class="headerNavigation">My Account</a> | <a href="http://magical-scraps.com/shopping_cart.php" class="headerNavigation">Cart Contents</a> | <a href="http://magical-scraps.com/checkout_shipping.php" class="headerNavigation">Checkout</a> </td> Look it on the On your header.php /includes/header.php cant seem to get rid of that one this is the code <td align="right" class="headerNavigation"><?php if (tep_session_is_registered('customer_id')) { ?><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> | <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></td>
ruizerwin Posted April 27, 2008 Posted April 27, 2008 cant seem to get rid of that one this is the code <td align="right" class="headerNavigation"><?php if (tep_session_is_registered('customer_id')) { ?><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> | <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></td> Go to /includes/languages/english.php Look for HEADER_TITLE_CHECKOUT check if any blank spaces and remove it Erwin D. Padilla Web Developer and Linux Admin
Recommended Posts
Archived
This topic is now archived and is closed to further replies.