Proper HTML for one thing. XD
What are you trying to do, have it so that way you can hover over a button for the copyright? Does it HAVE to be the same as the User Dropdown Menu? If not, try this:
HTML Code:
<div style="margin:20px; margin-top:5px;text-align:center;">
<input type="button"
value="Hover for Copyright"
style="font-size: smaller; color: #333333; border: 0px; padding: 4px; padding-left: 10px; padding-right: 10px;"
onMouseover="this.parentNode.getElementsByTagName('div')[0].style.display = 'block';"
onMouseout="this.parentNode.getElementsByTagName('div')[0].style.display = 'none';" />
<div class="alt2" style="margin: 0px; padding: 6px; border: 0px; display: none;">
<div>
PLACE HOVER CONTENT HERE
</div>
</div>
</div>
Style to your liking, place your content in the
PLACE HOVER CONTENT HERE bit.
(I use something similar for one of our Spoiler BB Codes on my forum.)