Announcement

Collapse
No announcement yet.

Bullets not wrapping around images

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Bullets not wrapping around images

    Hello,

    I use bullets a lot on my site, but since upgrading find that bullets don't wrap around images:

    e.g. first product on this list:

    http://www.cleansmartsupplies.co.uk/...-shampoos.html

    A Google searches suggest adding this:

    ul {

    overflow:hidden;

    }

    - which works but unfortunately also stops the drop downs on my CSS side menu working. Any ideas?

    Any help much appreciated.

    #2
    Your page is fine in firefox but not IE.

    If you'd rather that these lists start under the product image (so everything lines up nicely), try

    .product-details ul {clear:both;}

    This will only apply the clear to UL's within product details, so shouldn't affect your menu.

    You could use something similar to make them wrap:

    .product-details ul {overflow:hidden;}
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Thanks Norman,

      I'm quite new to CSS, so this is probably wrong, but what I've done is pasted this:

      <style>
      ul {overflow:hidden !important;}
      </style>

      at the top of the "image on left, text wrapped around" layout code.

      The bullets now look great, but the drop downs on my CSS menu have stopped working

      Where am I going wrong?

      Thanks,
      Matt

      Comment


        #4
        .product-details ul {clear:both;}

        This has worked a treat, thanks Norman!

        Matt

        Comment

        Working...
        X