PDA

View Full Version : Move icon legend


CyberEdge
12-29-2012, 05:09 AM
As you can see in the image below, the icon legend takes up an unnecessary extra row, when it could be right aligned with the 'forum statistics' row.

https://vborg.vbsupport.ru/external/2012/12/5.jpg

Is there any way to do this?

WorldCraft
12-29-2012, 09:58 AM
Sure!

Go to your Style Manager and edit template FORUMHOME. Backup your template first before making any changes.

Find:
<div id="wgo_stats" class="wgo_subblock section">


One line above add:
<table style="border-top:{vb:stylevar blocksubhead_border};">
<tr>
<td style="width:50%;">


Find:
{vb:raw template_hook.forumhome_wgo_stats}
</div>
</div>


One line below add:
</td>
<td style="width:50%;">


Find:
{vb:raw template_hook.forumhome_icon_legend}
</dl>
</div>
</div>


One line below add:
</tr>
</table>

If you require additional instruction let me know.

CyberEdge
12-29-2012, 07:21 PM
It ended up like this: https://vborg.vbsupport.ru/external/2012/12/4.jpg :s

WorldCraft
12-29-2012, 09:10 PM
Try this:

Find:
<div id="wgo_stats" class="wgo_subblock section">
<h3 class="blocksubhead">

Add style="border:none;" to the <h3> element so it looks like: <h3 style="border:none;" class="blocksubhead">

Find:
<div id="wgo_legend" class="wgo_subblock section">
<h3 class="blocksubhead">

Add the style="border:none;" to this <h3> as well.

If this doesn't help, can you provide a link to your forum?

CyberEdge
12-29-2012, 09:17 PM
There was no difference :/

WorldCraft
12-29-2012, 09:20 PM
Can you provide me a link to your forum? It might be something with the custom theme

CyberEdge
01-07-2013, 10:02 PM
<a href="http://vizor.us" target="_blank">http://vizor.us</a>

I've looked around and still no luck :/

WorldCraft
01-08-2013, 08:43 AM
Change the style="width:50%;" to style="width:50%;vertical-align:top;" on both <td> elements.