Guest Posted November 24, 2003 Share Posted November 24, 2003 Can anyone please help & advise me why on a couple of pages I have the letter n showing on the pages like this: n n n n n n n n Here is the example: http://www.ringtonesaffiliates.com/dialato...ex.php?cPath=22 Any help would be really appreciated WBR yeldar Link to comment Share on other sites More sharing options...
mugitty Posted November 24, 2003 Share Posted November 24, 2003 Darren; My first guess would be that in your index.php file, you have some "newline" characters that are not coded properly. Do a search in that file for this area $rows = 0; while ($categories = tep_db_fetch_array($categories_query)) { $rows++; $cPath_new = tep_get_path($categories['categories_id']); $width = (int)(100 / MAX_DISPLAY_CATEGORIES_PER_ROW) . '%'; echo ' <td align="center" class="smallText" style="width: ' . $width . '" valign="top"><a href="' . tep_href_link(FILENAME_DEFAULT, $cPath_new, 'NONSSL') . '">' . tep_image(DIR_WS_IMAGES . $categories['categories_image'], $categories['categories_name'], SUBCATEGORY_IMAGE_WIDTH, SUBCATEGORY_IMAGE_HEIGHT) . '<br>' . $categories['categories_name'] . '</a></td>' . "\n"; if ((($rows / MAX_DISPLAY_CATEGORIES_PER_ROW) == floor($rows / MAX_DISPLAY_CATEGORIES_PER_ROW)) && ($rows != tep_db_num_rows($categories_query))) { echo ' </tr>' . "\n"; echo ' <tr>' . "\n"; } } ?> and see if the "\n" entries are coded as above ... if you want to REALLY see something that doesn't set up right out of the box without some tweaking, try being a Foster Parent! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.