sadsonic Posted February 16, 2004 Share Posted February 16, 2004 <!-- header //--> <table border="0" width="750" hight="0"cellspacing="0" cellpadding="40" align="center"> <tr class="headerNavigation"> <td class="headerNavigation"><?php echo $breadcrumb->trail(' » '); ?></td> <?php if (tep_session_is_registered('customer_id')) { ?><?php } ?> </td> </table> <?php if (isset($HTTP_GET_VARS['error_message']) && tep_not_null($HTTP_GET_VARS['error_message'])) { ?> <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr class="headerError"> <td class="headerError"><?php echo htmlspecialchars(urldecode($HTTP_GET_VARS['error_message'])); ?></td> </tr> </table> <?php } if (isset($HTTP_GET_VARS['info_message']) && tep_not_null($HTTP_GET_VARS['info_message'])) { ?> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr class="headerInfo"> <td class="headerInfo"><?php echo htmlspecialchars($HTTP_GET_VARS['info_message']); ?></td> </tr> </table> <?php } ?> I need to place a background image at the top(in header), an then make it match my random images in index.htm. But there is a space (just one line) somewhere in this code, I just cant find it... spaces are either <p> or <br>?? Hope someone can help.. Link to comment Share on other sites More sharing options...
sadsonic Posted February 16, 2004 Author Share Posted February 16, 2004 any comments ? What do a space looks like in PHP language? Link to comment Share on other sites More sharing options...
drakonan Posted February 16, 2004 Share Posted February 16, 2004 Let me see your site and explain what "space" you're trying to remove. It could be "margin" space (you define that in the BODY tag) It could be IE adding whitespace to an image hyperlink (I don't know of a "legal" way to fix it, but I've managed to add hyperlinks to my category headers with an "HTML illegal" piece of code. - - - - Sometimes, ignorance is bliss. Link to comment Share on other sites More sharing options...
drakonan Posted February 16, 2004 Share Posted February 16, 2004 btw a "space" is or " " a "return" is <BR> (break) a new paragraph (which also breaks the line) is <P> (</P> can too if ending a <P>) - - - - Sometimes, ignorance is bliss. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.