I don't know how many people here are working with CSS to create their own page styles. If you are, you may have stumbled upon the same problem as I have, that is the automatically generated code doesn't contain any information that would enable us to differentiate, for example, the page's image with the avatars' images, or with the ad's image, or with the syndication's image.
My previous post lists the tags currently generated. I was wondering whether it would be a good idea for the developers behind DD to add CSS class information to most of the tags that are automatically generated.
For example, for IMG tags we would have 4 classes:
[list]
- page (for the comic picture),
- avatar (for all the avatars),
- ad (for the ads),
- rss (for the rss pic).
[/list:u]
This would enable us to create a stylesheet like:
[code:1] img.page { /* some CSS specific for the comic picture */ }
img.avatar { /* idem */ }
img.ad { /* idem */ }
img.rss { /* idem */ }
[/code:1]
And generate even more good-looking pages :-).
I can't think of any other useful classes for now... Note this is not a request for a change to the way things work, but just some random thoughts I have had this morning. All comments welcome :-).