I am working on changing some html elements on a structure of and inner
I added a css element like this:
ul.spaced li
{
margin-bottom: 10px;
}
And I try to use it like this:
<li class="spaced">Hike description test</li>
But it doesn’t seem to add the space at the bottom.
Also, how can I make the inner
You can see an example of the page I am working on here:
http://www.comehike.com/community/hiker_public_profile.php?community_member_id=2
Thanks!
Your selector is wrong – you don’t want to look for
li inside ul.spaced, you wantli.spaced inside ul. Also, ifmargin-bottomdoesn’t work, you can probably get away with just changing it topadding-bottom.