At 12:22 AM 7/24/2006, Richard Brown wrote:
>I am styling a two column list here:
><http://wilsonsjewellery.co.uk/range.html>
><http://www.wilsonsjewellery.co.uk/style/three.css>
>
>I am using a technique explained here:
><http://alistapart.com/articles/multicolumnlists>
>
>However, I am having two problems. Firstly, I cannot get rid of the text
>decoration even though I have declared none and secondly the list has
>continued into the div below. Any ideas please?


Hi Richard,

When you say "text decoration" do you mean the bullet on the list 
items?  If so, that's controlled not by text-decoration but by 
list-style-type.  You're currently removing the bullet in your 
navigation menu using:

         #navlist li {
         list-style: none;

but not the other list.  Personally, since I use mostly unbulleted 
lists, I express a generic rule up front: li { list-style-type: none; 
} and then add back bullets when needed.

Ref: W3C CSS 2.1 Specification
      12 Generated content, automatic numbering, and lists
      http://www.w3.org/TR/CSS21/generate.html#lists

To echo David, please correct your markup per 
http://validator.w3.org/check?uri=http%3A%2F%2Fwilsonsjewellery.co.uk%2Frange.html
 
and then let us know if you still need help sorting out your float issues.

Warm regards,
Paul

      

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to