Lee Daniel Crocker wrote:
Yes, I understand CSS just fine, I just hadn't looked specifically at yours yet to see what you were doing. And it /is/ a nuisance that you can't have multiple classes on a single element, even though you can do a lot without them. I never saw a line of PHP before I wrote the wiki code, so if I can learn it well enough to write the whole thing, you should be able to learn enough to make modifications without too much work.
Sorry if I offended -- I only meant to say we have areas of knowledge
There are quite a few tricks to work around the problem of single classes. For example, there's no need to give the "From Wikipedia, the free encyclopedia." paragraph a class. We can access it by either:
h1 + p { /* first P after an h1 but I'm not sure how IE supports this */ } or div.masthead p { /* if we made a top div */ }
with E[foo="bar"] you can do matching on arbitrary tags, but again, support is patchy.