Re: problem to diplay results horizontally

2008-12-22 Thread alex poyaoan
Yes thanks got it and working fine with display: inline; >Try this >Always works for me > > >.ul{ >margin: 0; >padding: 0; >cursor: default; >list-style-type: none; >display: inline; >} >.li{ >display: table-cell; >position: relative; >padding: 2px 6px; >

Re: problem to diplay results horizontally

2008-12-22 Thread Robert Bailey
should be Thanks! Robert Bailey 210.748.2363 Robert Bailey wrote: > Try this > Always works for me > > > ..ul{ > margin: 0; > padding: 0; > cursor: default; > list-style-type: none; > display: inline; > } > ..li{ > display: table-cell; > position: relative; >

Re: problem to diplay results horizontally

2008-12-22 Thread Robert Bailey
And for the break, use the MOD operator and start your new list Thanks! Robert Bailey 210.748.2363 ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.

Re: problem to diplay results horizontally

2008-12-22 Thread Robert Bailey
Try this Always works for me ..ul{ margin: 0; padding: 0; cursor: default; list-style-type: none; display: inline; } ..li{ display: table-cell; position: relative; padding: 2px 6px; display:inline; } Thanks! Robert Bailey 210.748.2363

RE: problem to diplay results horizontally

2008-12-22 Thread Robert Harrison
This should do what you want... #GetAll.title# #year#  Robert B. Harrison Director of Interactive services Austin & Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 T : 631.231.6600 Ext. 119 F : 631.434.7022 www.austin-williams.com Great advertising can't

Re: problem to diplay results horizontally

2008-12-22 Thread alex poyaoan
ok thanks will try that >correction it's not default to block.. it's "list-item"... > > >> the element display property is defaulted to block, try setting >> up some css, change the inline property of the element to >> "inline". >> I'm no css guru but that might get your started >> ~

Re: problem to diplay results horizontally

2008-12-22 Thread Greg Morphis
correction it's not default to block.. it's "list-item"... On Mon, Dec 22, 2008 at 12:05 PM, Greg Morphis wrote: > the element display property is defaulted to block, try setting > up some css, change the inline property of the element to > "inline". > I'm no css guru but that might get your st

Re: problem to diplay results horizontally

2008-12-22 Thread Greg Morphis
the element display property is defaulted to block, try setting up some css, change the inline property of the element to "inline". I'm no css guru but that might get your started On Mon, Dec 22, 2008 at 11:57 AM, alex poyaoan wrote: > hi everybody > > I have this code and it works fine except

Re: problem to diplay results horizontally

2008-12-22 Thread Don L
Well, list by design is in vertical order while table columns would be horizontal. > hi everybody > > I have this code and it works fine except that i want the results of > year to display horizontally couldn't figure out how toit grouped > on the title > > > > #GetAll.title# >

problem to diplay results horizontally

2008-12-22 Thread alex poyaoan
hi everybody I have this code and it works fine except that i want the results of year to display horizontally couldn't figure out how toit grouped on the title #GetAll.title# #year# with this the results would be title1 2001 2002 2003 etc. I want the res