Hi
Some years ago, if I remember, ADE 1.7. did not agree with :firstletter. It seems it now can use it.
So, imagine a book with h1 chapters. I wish to insert some dropcaps.
Code:
h1 + p {color:red;}
paints the first paragraph following a h1 title in red.
Code:
.firstletter:first-letter {color:red;}
does the same trick for the first letter of a paragraph.
Question: I would like to insert a CSS code which gives a
Code:
class="firstletter"
to the first paragraph of each h1 title. Or maybe I need a regex for that? I am confused.