Just looking at it and you got there before me. Good job! Just an FYI
When you float something, you must provide a width. Different browsers (and different rendering modes) will do different things. The CSS standard says that if a width is not provided, that the width shall tend towards zero. Other browsers make it to 100%. Margins: The rule of thumb on the box model is that margins, padding, borders and content must make up 100% of the parent's width. If a width is not declared, it can be used to make up that item. If there is any question as to what margin should be extended, its usually the right margin. Sandra Clark ============================== http://www.shayna.com Training in Cascading Style Sheets and Accessibility -----Original Message----- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Thursday, October 26, 2006 9:18 AM To: CF-Talk Subject: Re: OT: In need of CSS goddess (Sandy) Ok I got it! I just added a fixed width to the gallery li items. This forces it to only go so wide. The text wraps nicely I think. #suggestedproductsgallery li { float:left; margin-right:18px; margin-bottom:10px; font-size:70%; color:#333333; text-align:center; width: 90px; } Thanks, Will ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:258101 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

