Tried the TD tag stuff, still no go.
Searched for and found several articles that probably fit the ones you mentioned (read them all), found this one specifically:
https://vborg.vbsupport.ru/showthread.php?t=126649
Can't see what they are doing there that I'm not. Like I said, this code is running perfectly in vB3.8, just not in 4.0.
After taking a closer look at it the vbmenu_register function, in VB4 the location is in vbulletin-core.js and in VB3 it's in vbulletin_global.js. However both functions are identical:
Code:
function vbmenu_register(B,A,C){if(typeof (vBmenu)=="object"){return vBmenu.register(B,A)}else{return false}}
I'm still lost, but I'm also still looking. Thanks!
--------------- Added [DATE]1261891833[/DATE] at [TIME]1261891833[/TIME] ---------------
Ok, I think I got this figured out. Took me a while to find how the new popups are getting rendered but it looks like you have to use a UL/LI type setup and can't use the table/TD type of syntax any longer.
Not sure if that statement is 100% true, I just know what is and isn't working. heh
--------------- Added [DATE]1261896290[/DATE] at [TIME]1261896290[/TIME] ---------------
Ok, so I was wrong (go figure), you can use tables just fine.
The link you click on has to have the class of
popupctrl and then you have to wrap what you want in the popup in a
UL with the class
popupbody.
Anyway, I'm sure I don't fully understand how this works, but... I'm get'n there, thanks for your patience. =)