Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Problems


Dixie531

Recommended Posts

Posted

Hi Dixie

 

had a look at your source code. You are adding an 'n' at the end of a </td> when it comes to your category listings.

 

Find this in your index.php

    $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" width="' . $width . '" valign="top"><a href="' . tep_href_link(FILENAME_DEFAULT, $cPath_new) . '">' . 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 != $number_of_categories)) {
       echo '              </tr>' . "\n";
       echo '              <tr>' . "\n";
     }
   }

 

It looks like you have removed the backslash in the "\n" in the above code.

The \n is there to say "new line"

 

Hope this helps

 

PhilipH

Posted

The File Manager will do that...get yourself a good php editor and FTP client instead.

"Buy the ticket, take the ride..." -HST

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...