ivyfleur, on Jun 21 2009, 04:46 AM, said:
Thanks Yasir,
Tried that but that didn't solve the problem. I also tried adding adding the following at line 36 which didn't work either:-
$info_box_contents[] = array ('align' => 'center',
'text' => '<MARQUEE behavior= "scroll" align= "center" direction= "up" height="160" scrollamount= "2" scrolldelay= "70" onmouseover=\'this.stop()\' onmouseout=\'this.start()\'>'.$bestsellers_list.'</MARQUEE>');
That marquee code does state align center but for some reason it's align left and not in the center of the box.
Thanks.
What is your shop's address ? url ?
Try this
Line 28 to 21
$bestsellers_list = '<table border="0" width="100%" cellspacing="0" cellpadding="1">';
while ($whats_new = tep_db_fetch_array($whats_new_query)) {
$rows++;
$bestsellers_list .= '<tr><td class="infoBoxContents" valign="top">' . '</td><td class="infoBoxContents">'. '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $whats_new['products_id']) . '">' .tep_image(DIR_WS_IMAGES . $whats_new['products_image'], $whats_new['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT).'<br>'. tep_row_number_format($rows). '. <a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $whats_new['products_id']) . '">' . $whats_new['products_name'] . '</a></td></tr>';
replace the above with this
$bestsellers_list = '<table border="0" width="100%" cellspacing="0" cellpadding="1" align="center">';
while ($whats_new = tep_db_fetch_array($whats_new_query)) {
$rows++;
$bestsellers_list .= '<tr><td class="infoBoxContents" valign="top" align="center">' . '</td><td class="infoBoxContents" align="center">'. '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $whats_new['products_id']) . '">' .tep_image(DIR_WS_IMAGES . $whats_new['products_image'], $whats_new['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT).'<br>'. tep_row_number_format($rows). '. <a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $whats_new['products_id']) . '">' . $whats_new['products_name'] . '</a></td></tr>';
Edited by mirza_yasir4, 23 June 2009 - 03:28 PM.