w110fr Posted February 20, 2006 Posted February 20, 2006 I installed the Contribution BoxImageThemaMS2fr_V2.7, And his walking very well except the box promotion. I tried to make qlqs change in the file specials.php And the file /includes/classes/thema/1/stylesheet.css. But I did not arrive, I want to post beats it, the height and the background of box. www.tanitsystems.com script css: /* Interieure boxe Catalog / Includes / boxes / Specials.php (Box des promotions)*/ .infoBoxContentsSpecials { background-image: url(../../../../images/infobox/thema/1/french/prod_bg.gif); font-family: Verdana, Arial, sans-serif; font-size: 10px; Contents of file specials.php : <?php if ($random_product = tep_random_select("select p.products_id, pd.products_name, p.products_price, p.products_tax_class_id, p.products_image, s.specials_new_products_price from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_SPECIALS . " s where p.products_status = '1' and p.products_id = s.products_id and pd.products_id = s.products_id and pd.language_id = '" . (int)$languages_id . "' and s.status = '1' order by s.specials_date_added desc limit " . MAX_RANDOM_SELECT_SPECIALS)) { ?> <!-- specials //--> <tr> <td> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => BOX_HEADING_SPECIALS); // Nom du fichier image ? indiquer pour l'afficher en haut de la boxe // new infoBoxHeading($info_box_contents, image_de_gauche, nom_du_css, affichage_text_box, image_de_droite, image_du_lien, adresse_du_lien); new infoBoxHeading($info_box_contents, false, infoBoxHeadingSpecials, false, false, box_specials, tep_href_link(FILENAME_SPECIALS, '', 'NONSSL')); $info_box_contents = array(); $info_box_contents[] = array('align' => 'center', 'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $random_product["products_id"]) . '">' . tep_image(DIR_WS_IMAGES . $random_product['products_image'], $random_product['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $random_product['products_id']) . '">' . $random_product['products_name'] . '</a><br><s>' . $currencies->display_price($random_product['products_price'], tep_get_tax_rate($random_product['products_tax_class_id'])) . '</s><br><span class="productSpecialPrice">' . $currencies->display_price($random_product['specials_new_products_price'], tep_get_tax_rate($random_product['products_tax_class_id'])) . '</span>'); // Nom des css pour l'int?rieure de la boxe et le cadre // new infoBox($info_box_contents, nom_de_la_css_pour_l'int?rieure, nom_de_la_css_pour_le_cadre); new infoBox($info_box_contents, infoBoxContentsSpecials, infoBoxSpecials); // Nom du fichier image ? indiquer pour l'afficher en bas de la boxe // new infoBoxHeading($info_box_contents, image, nom_du_css); new infoBoxHeading($info_box_contents, bas, infoBoxHeadingSpecials); ?> </td> </tr> <!-- specials_eof //--> <?php } ?> Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.