The <ul></ul> tags are what is responsible for indentation among list items. So, you'd need to wrap the <ul> tag around any <li> tags in order to get the inner indentation that you're looking for. Of course, they'll also cause a space before and after the list itself, which may have been what you were trying to avoid.
If that is true, then you have to choose: Use <ul> and accept the space; Don't use <ul> and accept the out-dentation; create nested tables and a bullet graphic to force the issue. There might be a fourth option, to use CSS and somehow make your magic work, but that one is beyond me. -Patti > Morning, > > Got a list problem that's driving me crazy! This is probably more a CSS > question than Cold Fusion.... > > I'm trying to output the results of a query into a list. No problems > there, > but the formatting is driving me nutz. The list wraps wrong. What I'm > getting (using a "*" as the bullet for example here only... > > * Item One > * Item Two is long > and wraps under the bullet > *Item Three is long > and wraps under the bullet > > What I'm trying to get: > > * Item One > * Item Two is long > and wraps this way > * Item Three is long > and wraps this way > > So, shouldn't the below do what I want? > > <tr> > <td> > <cfoutput query="deals"><li list-style-position: > outside;>#deals.PA_CATEGORY#</li> > </td> > </tr> > > Of course, I could use a graphic and a two column table....but that > doesn't > seem like the best way to go... > > I've tried all sorts of CSS tricks, but nothing seems to fix the problem. > Ideas? > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Get the mailserver that powers this list at http://www.coolfusion.com

