View Full Version : FORUMHOME icon legend on single line?
paulket
12-31-2012, 12:36 AM
How can I have my FORUMHOME icon legend on a single line so instead of having:
image Contains unread forum posts
image Contains no unread forum posts
image Forum is a category
image Forum is a Link
I would have:
image Contains unread forum posts image Contains no unread forum posts image Forum is a category image Forum is a Link
Any help would be appreciated very much.
Amaury
12-31-2012, 05:20 AM
Someone asked this question not too recently. This (https://vborg.vbsupport.ru/showthread.php?t=293382) might help.
WorldCraft
12-31-2012, 07:43 AM
Find:
<dl id="icon_legends" class="icon_legends">
<dt><img src="{vb:stylevar imgdir_statusicon}/forum_new-16.png" alt="{vb:rawphrase new_posts_forum}" /></dt><dd>{vb:rawphrase new_posts_forum}</dd>
<dt><img src="{vb:stylevar imgdir_statusicon}/forum_old-16.png" alt="{vb:rawphrase no_new_posts_forum}" /></dt><dd>{vb:rawphrase no_new_posts_forum}</dd>
<vb:if condition="$vboptions['showlocks']"><dt><img src="{vb:stylevar imgdir_statusicon}/forum_lock-16.png" alt="{vb:rawphrase forum_is_closed_for_posting}" /></dt><dd>{vb:rawphrase forum_is_closed_for_posting}</dd></vb:if>
<dt><img src="{vb:stylevar imgdir_statusicon}/category-16.png" alt="{vb:rawphrase category_forum}" /></dt><dd>{vb:rawphrase category_forum}</dd>
<dt><img src="{vb:stylevar imgdir_statusicon}/forum_link-16.png" alt="{vb:rawphrase link_forum}" /></dt><dd>{vb:rawphrase link_forum}</dd>
{vb:raw template_hook.forumhome_icon_legend}
</dl>
Replace with:
<ul id="icon_legends" class="icon_legends">
<li style="display:inline;"><img src="{vb:stylevar imgdir_statusicon}/forum_new-16.png" alt="{vb:rawphrase new_posts_forum}" /></li><li style="display:inline;">{vb:rawphrase new_posts_forum}</li>
<li style="display:inline;"><img src="{vb:stylevar imgdir_statusicon}/forum_old-16.png" alt="{vb:rawphrase no_new_posts_forum}" /></li><li style="display:inline;">{vb:rawphrase no_new_posts_forum}</li>
<vb:if condition="$vboptions['showlocks']"><li style="display:inline;"><img src="{vb:stylevar imgdir_statusicon}/forum_lock-16.png" alt="{vb:rawphrase forum_is_closed_for_posting}" /></li><li style="display:inline;">{vb:rawphrase forum_is_closed_for_posting}</li></vb:if>
<li style="display:inline;"><img src="{vb:stylevar imgdir_statusicon}/category-16.png" alt="{vb:rawphrase category_forum}" /></li><li style="display:inline;">{vb:rawphrase category_forum}</li>
<li style="display:inline;"><img src="{vb:stylevar imgdir_statusicon}/forum_link-16.png" alt="{vb:rawphrase link_forum}" /></li><li style="display:inline;">{vb:rawphrase link_forum}</li>
{vb:raw template_hook.forumhome_icon_legend}
</ul>
paulket
12-31-2012, 01:04 PM
Someone asked this question not too recently. This (https://vborg.vbsupport.ru/showthread.php?t=293382) might help.
Thank you for the reply, Amaury25. I saw that thread and I think the OP was asking to do something a little different, like placing the icon legend next to the stats.
--------------- Added 1356962823 at 1356962823 ---------------
Find:
code
Replace with:
code
Thank you, WorldCraft! That did it :)
WorldCraft
01-01-2013, 03:25 AM
Cheers mate. :)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.