I had this problem before with the itemizing dots used in my product info display. A bullet kept showing up for my model #, so I got rid of it the only way I knew how... by commenting out the model section in my product_info_display.php.
Code:
Something I didn;t really want to do, but found I had no other choice in getting rid of it. Now I see the same bullets appearing in my My Account page and would really like to just get rid of the bullets instead of commenting out this section. (I have included a zip of the bullets circled in red) It's not so much that the bullets even bother me really, it's just that I cant seem to figure what padding or margin section in the css that would move that section to the right several pixels. Anyone have ideas?Code:<!--bof Product details list --> <?php if ( (($flag_show_product_info_model == 1 and $products_model != '') or ($flag_show_product_info_weight == 1 and $products_weight !=0) or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name))) ) { ?> <ul id="productDetailsList" class="floatingBox back"> <!-- <?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?> --> <?php echo (($flag_show_product_info_weight == 1 and $products_weight !=0) ? '<li>' . TEXT_PRODUCT_WEIGHT . $products_weight . TEXT_PRODUCT_WEIGHT_UNIT . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_quantity == 1) ? '<li>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?> </ul> <br class="clearBoth" /> <?php } ?> <!--eof Product details list -->






Bookmarks