PDA

View Full Version : using tables on vb4, how? :(


cloferba
07-27-2011, 08:44 PM
i have been trying to make this modification work on vbulletin4 but its imposible, i dont know how vbulletin4 uses tables https://vborg.vbsupport.ru/external/2011/07/2.gif

an example:
<!--Here the table starts-->
<div class="vbmenu_popup" id="sysinfo_$post[postid]_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">

<td class="thead">Title of the Table</td>
<tr><td class="vbmenu_option">Something under</td></tr>
</table>
</div>

can anyone explain me how to make this code work on vbulletin4?

thank you very much

mod (https://vborg.vbsupport.ru/showthread.php?t=97702)

kh99
07-28-2011, 12:26 PM
I think the issue is that the mod uses popup menus, and they work differently in vb4. I can't explain exactly how it all works, but I played around with it and found that if I insert this code in the postbit template I can get a popup menu to work:

<ul class="floatcontainer">
<li class="popupmenu"><a href="javascript://" class="popupctrl">My System</a>
<ul class="popupbody popuphover">
<li>CPU:</li>
<li>Mainboard:</li>
<li>Mem:</li>
</ul>
</li>
</ul>


So hopefully you can change the mod in a similar way.