Thread: Itemizing Dots

Results 1 to 3 of 3
  1. #1
    Join Date
    Sep 2006
    Location
    Jacksonville, FL
    Posts
    236
    Plugin Contributions
    0

    Itemizing Dots

    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:
    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 -->
    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?
    Attached Files Attached Files
    John L.
    MultiMedia Designer

  2. #2
    Join Date
    Jun 2003
    Posts
    33,825
    Plugin Contributions
    0

    Default Re: Itemizing Dots

    http://css.maxdesign.com.au/listutorial/index.htm

    The above link is a good set of tutorials on how to style lists using CSS. Much better than commenting out the code.
    Please do not PM for support issues: a private solution doesn't benefit the community.

    Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.

  3. #3
    Join Date
    Sep 2006
    Location
    Jacksonville, FL
    Posts
    236
    Plugin Contributions
    0

    Default Re: Itemizing Dots

    Thanks, Kim!
    John L.
    MultiMedia Designer

 

 

Similar Threads

  1. Password dots show upon loading home page
    By ranger_lp in forum General Questions
    Replies: 4
    Last Post: 15 Dec 2010, 09:24 PM
  2. Dots show up in password field
    By ranger_lp in forum General Questions
    Replies: 2
    Last Post: 11 Sep 2006, 06:31 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •