PDA

View Full Version : So where's the "bigusername" menu?


welo
03-03-2006, 03:53 AM
What template am I looking for so I can change the dropdown menu for a person's username, so the link to their site opens in a new window instead of shunting people off my board? This has been bugging me ever since 3.0G. The postbit templates use:

<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>

Do I need to hack target="_blank" into member.php somewhere?

S@NL - BlackBik
03-03-2006, 07:25 AM
No, you could just put it in the template:
<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]" target="_blank">$post[musername]</a>

welo
03-03-2006, 02:39 PM
Um... I don't think so. All that href does is control the JS dropdown menu. I want to add _blank to an actual menu item, and darned if I know where it's being generated from.

merk
03-04-2006, 12:06 AM
I think you'll find that the <a> tag does not control the dropdown. It is the <div id="postmenuX"> tag.

You will find it almost at the bottom of the postbit.

(<!-- post $post[postid] popup menu -->)

welo
03-04-2006, 12:14 AM
That's exactly what I was looking for. Thanks man. :up: