Yeah, sure, it's just normal HTML.
This, for example:
HTML Code:
<style>
.photo{ display: block; float: left; margin: 1em; border: 0; }
.fn{ visibility: hidden; }
/* the hcard microformat requires `fn` ("full name"); even though we're not displaying it.
it still has the benefit of being machine-readable, however -
if your email client got this, for example, it would probably still sort it under the full name (not the nickname). */
.nickname{ font-weight: bold; color: darkred; }
.honorific-suffix{ font-weight: bold; color: #3e3e3e; }
.category{ display: block; border: 0; }
</style>
<header class="vcard">
<img class="photo" src="die-WHY_WONT_IT.png" alt="philosoraptor considering best practices in PHP">
<h1>
<p class="fn">Adrian Testa-Avila
<p><a class="nickname url" href="member.php?29708-traq">traq</a>
</h1>
<p class="honorific-suffix">global $Moderator;
<img class="category" src="images/ranks/moderator.gif" alt="global moderator">
</header>
...would display very much like my post header here on DD.
You can use stylesheets for SVG images, too, with surprisingly good results.
Bookmarks