* fix CSS class name (storyTitle instead of storytitle)
* display alt-text as normal text instead of storyTitle * move image info below the name into a separate line * use <div> instead of <span><br> where approprate
This commit is contained in:
parent
a4f0037781
commit
00b7d1ab5e
1 changed files with 5 additions and 2 deletions
|
@ -2,13 +2,16 @@ To insert this image into a story or comment copy/paste the following code: <pre
|
|||
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td colspan="2" class="small" nowrap="nowrap"><span class="small"><% image.creator as="link" %> on <% image.createtime format="short" %> (<% image.fileext %>, <% image.width %>×<% image.height %> pixels)</span></td>
|
||||
<td colspan="2" class="small" nowrap="nowrap"><span class="small"><% image.creator as="link" %> on <% image.createtime format="short" %></span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" class="storytitle"><% image.alias %><br />
|
||||
<td valign="top">
|
||||
<div class="storyTitle"><% image.alias %></div>
|
||||
<div class="small">(<% image.fileext %>, <% image.width %>×<% image.height %> pixels)</div>
|
||||
<% image.alttext %></td>
|
||||
<td align="right" class="small" valign="top" nowrap="nowrap"><% image.editlink prefix="... " suffix="<br />" %><% image.deletelink prefix="... " %></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p><% image.show %></p>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue