As a webdesigner i've been annoying myself for quite some time about the html structure of the comment bubbles
We used to need those image hacks to create rounded corners. but now with CSS3 there is no longer a need for that.
simply by applying this code
border:1px solid;
border-radius:7px;
((i have not been able to find if the general code is supported by all -up to date- browsers. for safekeeping you can add the following))
-moz-border-radius:7px;
-webkit-border-radius: 7px;
on top of the regular styling.
the jcomments application can provide a noticable speed increase in the overal joomla site.
now there are a ton of seperate div's being loaded, each with their specific css style. plus the (at least) 4 images needed
to create the desired visual appearance. it all takes away resources and loading time! plus its extremely clumbersome to change colors.
So, instead of using a zillion div's there's only 1 now, and no extra kb's to be loaded in images. less requests to the server too.
Easier customisable and simpler and cleaner html. better CSS compliance and validation.
Please implement this as soon as possible:) its a win win for everyone!