I just tweaked the XML image display placement to align to the right of the Forum/Thread title. Looks much cleaner.
FORUMHOME
Code:
<!-- ORGINAL CODE <td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td> -->
<!-- RSS FEED MOD -->
<td class="thead" width="100%" align="$stylevar[left]">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="thead">$vbphrase[forum]</td>
<td><a href="external.php?type=RSS2" style="float:right"><img src="$stylevar[imgdir_button]/rss.gif" alt="XML RSS 2.0 feed for all Threads in all Forums" border="0" /></a></td>
</tr>
</table>
</td>
FORUMDISPLAY
Code:
<!-- ORIGINAL CODE <td class="tcat" width="100%">$vbphrase[threads_in_forum]<span class="normal">: $foruminfo[title]</span></td> -->
<!-- RSS FEED MOD -->
<td class="tcat" width="100%">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="tcat">$vbphrase[forum]<span class="normal">: $foruminfo[title]</span></td>
<td><a href="external.php?type=RSS2&forumids=$foruminfo[forumid]" style="float:right"><img src="$stylevar[imgdir_button]/rss.gif" alt="XML RSS 2.0 feed for Threads in $foruminfo[title]" border="0" /></a></td>
</tr>
</table>
</td>
* Notice I added the Forum Title in the "alt" description for the sub-forums. Now reads alt="XML RSS 2.0 feed for Threads in $foruminfo[title]"
See it in action
here
Hope this helps. Enjoy!