[css-d] Styling DD

2009-02-18 Thread Casey
Hi, I'm trying to remove the indentation from my DD element. Text-indent does not seem to do the trick. Any suggestions? If you're curious, I'm trying to make a family tree (an actual tree) with CSS: dl dt a href=casey.htmlme/a awife/a /dt dd achild1/a achild2/a dl dt

Re: [css-d] Styling DD

2009-02-18 Thread Bill Brown
Casey wrote: I'm trying to remove the indentation from my DD element. Text-indent does not seem to do the trick. Any suggestions? dd{margin:0;padding:0;} -or, more extensively- dl,dt,dd{margin:0;padding:0;} -- !-- ! Bill Brown macnim...@gmail.com ! Web Developologist, WebDevelopedia.com

Re: [css-d] Styling DD

2009-02-18 Thread Casey
On Wed, Feb 18, 2009 at 3:34 PM, Bill Brown macnim...@gmail.com wrote: Casey wrote: I'm trying to remove the indentation from my DD element. Text-indent does not seem to do the trick. Any suggestions? dd{margin:0;padding:0;} -or, more extensively- dl,dt,dd{margin:0;padding:0;} -- !--