I'm attempting to relocate an element within another in order to enable a css :hover
effect.
<ul>
<li id="menu-item"> //move into here </li>
</ul>
<div class="tomove">...</div>
'tomove' is set to display:none;
menu-item:hover
causes 'tomove' to become display:block;
This needs to function with the css :hover
and be relocated into a <li>
item