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...
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...
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.
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! :)