@nosy -
the second part of what he posted breaks down like this:
body.home - we only want to hide titles on the front page. the single page will ignore this stuff, because it will have a different body class (the stuff after the period)
div.category-asides - this part singles out the category named asides. you could change this to 'dailies', or anything you want. just name your category appropriately.
h2.entry-title, - this is the element we want to hide. this one is the title of the entry. the comma means that we're going to do the same thing to the next element in our list.
{ display:none; } - this 'turns off' everything in our comma seperated list.
as far as the first part of what he posted....
yeah, andy, what does that do? ;)
that asterisk scares me. is that a wildcard?