I had heard the advice, but somehow I had not really looked at the actual results. I guess my referenced SVG clip art was causing a bit of a problem in feed readers as the images were only sized via external CSS (which feed readers do not bother picking up). Only after seeing the results of my referenced SVG objects in Planet Mars did I finally get around to doing something about it. Inline styles it is then, until I get around to embedding the images inline when syndicated). I hope this also fixes Opera’s handling of my clip art as well. Here is my WordPress quick tag which I use to add clip art to my site:
new edButton(‘ed_clipArt’\
,’clipArt’
,'<object type=”image/svg+xml” style=”float:right;width:6em;height:6em;clear:both;margin-left:10px” data=”‘
,’.svgz”><span/></object>’
,’a’
);
Since the majority of my images are right-floated, for now I don’t mind the occasional one in which I switch float:left for float:right and margin-right for margin-left…