I've been experimenting with the sidebar navigation from w3 schools, specifically trying to create a side-nav that opens from one div. You can see an example here: http://www.w3schools.com/w3css/tryit.aspfilename=tryw3css_sidenav_left_right&stacked=h (I'm interested in the right side only).
In the future, I'd like this navigation to be positioned at the bottom and open upwards. But currently, I'm struggling to make this sidebar appear above the existing content on my page, which includes a randomly chosen flash file. I suspect that one of the pre-existing position attributes is interfering or maybe there's a hidden style causing the issue.
Here's a snippet of the code:
<nav class="w3-sidenav w3-white w3-card-2 w3-animate-right" style="display:none;right:0;" id="rightMenu">
<a href="javascript:void(0)" onclick="closeRightMenu()" class="w3-closenav w3-large">Close ×</a>
<a href="#"><i class="fa fa-home w3-xxlarge"></i></a>
<a href="#"><i class="fa fa-search w3-xxlarge"></i></a>
<a href="#"><i class="fa fa-envelope w3-xxlarge"></i></a>
<a href="#"><i class="fa fa-globe w3-xxlarge"></i></a>
</nav>
<object id="flash-container">
<embed id="flash-content" src="" type="application/x-shockwave-flash" />
</object>
If anyone has insights on what might be causing the issue, I'd appreciate some guidance!