Hi,
Yes the problem is that you are not targeting the ul correctly.
This code:
Code:
#discuss ul { margin: 5px 0px 5px 0px; padding: 0px; }
#event ul { margin: 5px 0px 5px 0px; padding: 0; }
Should be like this:
Code:
ul#discuss { margin: 5px 0px 5px 0px; padding: 0px; }
ul#event { margin: 5px 0px 5px 0px; padding: 0; }
because the html is like this:
Code:
<ul id="discuss">
<li>This is discussion 1.</li>
The ul wasn't being targetted but the li was. For your version to work the ul would have to be wrapped in another container whos id was discuss.
That should sort it all out for you 
Paul
Bookmarks