R: [WSG] Centering all items in a li

2008-05-19 Thread Diego La Monica
Hi Darren, did you ever tried: label{ float:left; clear:left; } It's better than now. :) Cheers. Diego La Monica Web 2.0 - Standards - Accessibilità mobile: +39 3337235382 - skype: diego.la.monica web: http://diegolamonica.info - http://jastegg.it -Messaggio

Re: [WSG] Centering all items in a li

2008-05-19 Thread Matijs
I think semantically I would have gone for divs in the first place as it's not really a list perse... On Mon, May 19, 2008 at 12:04 AM, Darren Lovelock [EMAIL PROTECTED] wrote: Here's a example of what I'm doing http://www.munkyonline.co.uk/test.html I want the li's to behave the same as

Re: [WSG] possible to make absolute position moves down with fontsize resize?

2008-05-19 Thread Rick Lecoat
On 17 May 2008, at 06:03, David Hucklesby wrote: For some reason, sizing nearly everything in pixels is viewed as easy and efficient. I find I have to be super-careful when using fixed pixel sizes for anything, given the many and varied ways that this or that browser or operating system affects

Re: [WSG] firefox 3 beta5

2008-05-19 Thread David Dorward
On 19 May 2008, at 10:37, kevin mcmonagle wrote: Recently it was pointed out to me that a site I built is breaking in firefox 3 beta five. How close is this to release? RC1 just came out Do i need to worry about this? the site works fine in current browsers-firefox and otherwise. I'd

[WSG] firefox 3 beta5

2008-05-19 Thread kevin mcmonagle
Recently it was pointed out to me that a site I built is breaking in firefox 3 beta five. How close is this to release? Do i need to worry about this? the site works fine in current browsers-firefox and otherwise. -thanks in advance kevin

Re: [WSG] Centering all items in a li

2008-05-19 Thread Calvin Chan
Hi Darren, First of all, I will have to agree with Matijs that it is probably not the best place to use li. Second, I was actually doing some research on these type of problems the other day, and I founded this: http://www.jakpsatweb.cz/css/css-vertical-center-solution.html However, I did not

RE: [WSG] Centering all items in a li

2008-05-19 Thread Darren Lovelock
Hey Calvin, I've kind of fixed it using divs now. #container { display: table-row; padding: 0; margin: 0; width: 100%; } #container div { display: table-cell; vertical-align: middle; } div id=container div id=left content /div div id=right content /div

Re: [WSG] Centering all items in a li

2008-05-19 Thread Сергей Кириченко
Неужели никто не знает про славного Стью Николса? anybody knows Stuart Nicholls? He found decision long time ago!! http://www.cssplay.co.uk/ie/valign.html Darren Lovelock пишет: Hi list, I've been trying to find a solution that will allow me to vertically center all the items in a li.

Re: [WSG] firefox 3 beta5

2008-05-19 Thread Michael Horowitz
If its a Beta I would say wait until its done before rewriting anything that is currently W3C CSS compliant. Remember beta means not done. If you are interested in judging beta releases test it an decide why its breaking. Are you currently fulfilling W3C standards. If you are and its

Re: [WSG] PHP Standards

2008-05-19 Thread Michael Horowitz
I am guessing that PHP is much like JavaScript in that a lot of what is floating about is either poor or pooh the result of all the good programmes stending their time on ASP or J2EE Why woul you think the good programmers spend their time and ASP or J2EE? Michael Horowitz Your Computer

RE: [WSG] firefox 3 beta5

2008-05-19 Thread Paul Bennett
Ack! Anyone else had horrible problems installing FF3? My install crashes every time I open it, so I had to reinstall FF2.. *** List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe:

Re: [WSG] firefox 3 beta5

2008-05-19 Thread Felix Miata
On 2008/05/20 15:13 (GMT+1200) Paul Bennett apparently typed: Ack! Anyone else had horrible problems installing FF3? No, but ... My install crashes every time I open it, so I had to reinstall FF2.. I avoid installing applications whenever possible. In the case of unreleased Gecko products,

Re: [WSG] PHP Standards

2008-05-19 Thread Ray Cauchi
Hi Ian You may want to check out some pre-existing PHP coding standards: http://pear.php.net/manual/en/standards.php and the incomplete http://pear.php.net/manual/en/pear2cs.php http://framework.zend.com/manual/en/coding-standard.html Both PEAR and Zend Framework are Open source

RE: [WSG] Centering all items in a li

2008-05-19 Thread Thierry Koblentz
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Darren Lovelock Sent: Monday, May 19, 2008 12:20 PM To: wsg@webstandardsgroup.org Subject: RE: [WSG] Centering all items in a li   I've kind of fixed it using divs now.   #container { display: table-row; padding: 0; margin: 0;