tags:

views:

93

answers:

2

Hi, I'm trying to working out why the ul elements on the left nav on this site have a height of zero.

I'd like to add a bottom margin to the nested ul...

A: 

I am not entirely sure what you mean by a height of zero but I did see that in your theme.css there is the following entries:

#leftCol ul, #rightCol ul {
  margin:0;
  padding:0;
}

You could add some padding or margin to get some spacing. Maybe I am misunderstanding though.

Hope that helps a bit.

Ryan Alberts
Thanks Ryan, yes normally that would work but since the li elements where floated it didn't - I think that is what happened anyway, but thanks
morktron
Ahh.. ok. Glad everything worked out.
Ryan Alberts
A: 

Sorry, it was a easy error in the end, the li elements where set to display inline so I overrode it with float:left; clear:left which of course made the ul elements have no height! :)

morktron