Okay, so in the header template that I'm working on (yes, this is usually in the navbar template), I have:
HTML Code:
<div id="notifications">
<a href="usercp.php$session[sessionurl_q]"> Foobar $vbphrase[your_notifications]:</a> $notifications_total
</div>
<script type="text/javascript"> vBmenu.register("notifications"); </script>
When I display the page, and look at the source, I have:
HTML Code:
<div style="cursor: pointer;" id="notifications">
<a href="usercp.php"> Foobar Your Notifications:</a> 1
<img alt="" title="" src="images/misc/menu_open.gif" border="0"></div>
<script type="text/javascript"> vBmenu.register("notifications"); </script>
Where did the style in the div tag and the img come from? Its not that I don't want them—I actually want to put the image on another link.
I just can't figure out how they got there.
--don