I have implemented in the snews.php a div class-tag around the article text. If I use div id the site doesn't validate (since there's an id for every single article), so I must use class. My problem is that I can't define the p-tag inside a class, only an id.
Validation error:
#article_text { }
#article_text p { }
Doesn't work:
.article_text { }
.article_text p { }
Any suggestions of a way through the dark tunnel?