Re: [css-d] fixed width horizontal list

2009-11-18 Thread Bobby Jack
--- On Tue, 11/17/09, Jack Bates wrote: > I want to style an so it > looks similar to the main links on this > page, http://artefactual.com/ > > - horizontal > - right justified > - fixed width Hi Jack, The key to this one is floating the list to the right (to align the entire thing on the r

Re: [css-d] fixed width horizontal list

2009-11-17 Thread bill scheider
On Tue, Nov 17, 2009 at 3:44 PM, Jack Bates wrote: > I want to style an so it looks similar to the main links on this > page, http://artefactual.com/ > > So I tried adding display: block; float: right; > http://www.sfu.ca/~jdbates/tmp/css/200911171/

Re: [css-d] fixed width horizontal list

2009-11-17 Thread David Laakso
Jack Bates wrote: > > Now it's horizontal, right justified, and fixed width - but the links > are out of order : ( > > Can anyone suggest how to style this so it's horizontal, right > justified, fixed width, and in the correct order? (Without reordering > the ) > ol { background: blue; f

Re: [css-d] fixed width horizontal list

2009-11-17 Thread Jay Tanna
First change your code to this: Home Consulting ICA-AtoM Clients About Contact Then change your css to this: #centeredmenu { float:left; width:100%; background:#fff; border-bottom:4px solid #000; overflow:hidden; position:relative; } #cente

[css-d] fixed width horizontal list

2009-11-17 Thread Jack Bates
I want to style an so it looks similar to the main links on this page, http://artefactual.com/ - horizontal - right justified - fixed width Here's my first attempt, http://www.sfu.ca/~jdbates/tmp/css/200911170/ It *is* horizontal and right justified, but it's not fixed width I guess this is be