[css-d] ul issues

2006-08-30 Thread Daniel Hammond
Can someone tell me why on www.lyteenterprises.com/services.htm, the lists
of services are moved down an extra line in FF and Opera, and they are moved
over to the right in IE?

Daniel Hammond
www.objectivedesigns.com


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] ul issues

2006-08-30 Thread Bradley Wright
On 30/08/2006 14:25, Daniel Hammond wrote:
 Can someone tell me why on www.lyteenterprises.com/services.htm, the 
 lists of services are moved down an extra line in FF and Opera, and 
 they are moved over to the right in IE?

It's the margin of the ul. Try this:

.multicolumn {
float: left;
list-style: none;
margin-left: 0;
padding: 0 40px 0 0;
}
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] ul issues

2006-08-30 Thread Gunlaug Sørtun
Daniel Hammond wrote:
 Can someone tell me why on www.lyteenterprises.com/services.htm, the 
 lists of services are moved down an extra line in FF and Opera, and 
 they are moved over to the right in IE?

Defaults are different and used differently across browser-land. Looks
like you've only declared paddings on those ul, and that isn't enough.

Add...

ul.multicolumn {margin: 0;}

...and those differences will be evened out.

Georg
-- 
http://www.gunlaug.no
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] ul issues

2006-08-30 Thread Daniel Hammond
Very good. Thank you, sir.

Daniel Hammond
www.objectivedesigns.com

 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Bradley Wright
 Sent: Wednesday, August 30, 2006 9:39 AM
 To: css-d@lists.css-discuss.org
 Subject: Re: [css-d] ul issues
 
 Actually make that:
 
   margin: 0;
 
 Which should reset all the margins on the list.
 
 On 30/08/2006 14:37, Bradley Wright wrote:
  On 30/08/2006 14:25, Daniel Hammond wrote:
  Can someone tell me why on 
 www.lyteenterprises.com/services.htm, the 
  lists of services are moved down an extra line in FF and 
 Opera, and 
  they are moved over to the right in IE?
  
  It's the margin of the ul. Try this:
  
  .multicolumn {
  float: left;
  list-style: none;
  margin-left: 0;
  padding: 0 40px 0 0;
  }
  
 __
  css-discuss [EMAIL PROTECTED] 
  http://www.css-discuss.org/mailman/listinfo/css-d
  IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
  List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by 
  evolt.org -- http://www.evolt.org/help_support_evolt/
 __
 css-discuss [EMAIL PROTECTED] 
 http://www.css-discuss.org/mailman/listinfo/css-d
 IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by 
 evolt.org -- http://www.evolt.org/help_support_evolt/
 


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/