peugeot405 |
07-20-2012 11:38 PM |
how to alter the icon legend in forumdisplay
1 Attachment(s)
Hello all,
I have a issue with the icon legend in forumdisplay. The problem is that the icons have to be bigger than 16 x 16 px to be visible properly, but it messes up the style a bit.
So what i want to do is display the icon legend in two columns (see pic) and change the margin between the lines.
Attachment 139966
this is the default coding:
Code:
<div id="forum_icon_legend" class="forum_info_block blockbody formcontrols options_correct">
<dl id="icon_legends" class="forum_info_subblock icon_legends">
<dt><img src="{vb:stylevar imgdir_statusicon}/thread_new-16.png" alt="{vb:rawphrase new_posts}" /></dt><dd>{vb:rawphrase new_posts}</dd>
<dt><img src="{vb:stylevar imgdir_statusicon}/thread-16-{vb:stylevar right}.png" alt="{vb:rawphrase no_new_posts}" /></dt><dd>{vb:rawphrase no_new_posts}</dd>
<vb:if condition="$vboptions['usehotthreads']">
<dt><img src="{vb:stylevar imgdir_statusicon}/thread_hot_new-16.png" alt="{vb:rawphrase more_than_x_replies_or_y_views, {vb:raw vboptions.hotnumberposts}, {vb:raw vboptions.hotnumberviews}}" /></dt><dd>{vb:rawphrase hot_thread_with_new_posts}</dd>
<dt><img src="{vb:stylevar imgdir_statusicon}/thread_hot-16.png" alt="{vb:rawphrase more_than_x_replies_or_y_views, {vb:raw vboptions.hotnumberposts}, {vb:raw vboptions.hotnumberviews}}" /></dt><dd>{vb:rawphrase hot_thread_with_no_new_posts}</dd>
</vb:if>
<dt><img src="{vb:stylevar imgdir_statusicon}/thread_lock-16.png" alt="{vb:rawphrase closed_thread}" /></dt><dd>{vb:rawphrase thread_is_closed}</dd>
<dt><img src="{vb:stylevar imgdir_statusicon}/thread_dot-16-{vb:stylevar right}.png" alt="{vb:rawphrase thread_contains_a_message_written_by_you}" /></dt><dd>{vb:rawphrase you_have_posted_in_this_thread}</dd>
</dl>
</div>
Can someone post the coding to show the icon legend in two colomns please.
Thanks
|