Floating Nav Bar!

admin

Administrator
Staff member
Hi Guys<br />
<br />
Thanks to all of you that have helped me previously :) Here's another for you.<br />
<br />
I wish to create a NAV BAR that is in its own window (without the appearance of IEs buttons, scroll bar etc.), resized BUT always ON TOP of all the other windows regardless of how many are open. <br />
<br />
I know you guys can help!<br />
<br />
Amaze me once again :)<br />
<br />
Stu<!--content-->is what you mean a floating menu, if so then you would use javascript, have a look at these:<br />
<!-- m --><a class="postlink" href="http://javascript.internet.com/navigation/floating-menu.html">http://javascript.internet.com/navigati ... -menu.html</a><!-- m --><br />
<br />
<!-- m --><a class="postlink" href="http://www.mycgiserver.com/~freiwald/en/rollmenu.html">http://www.mycgiserver.com/~freiwald/en/rollmenu.html</a><!-- m --><br />
<br />
<!-- m --><a class="postlink" href="http://www.diyportal.com/free/float.html">http://www.diyportal.com/free/float.html</a><!-- m --><br />
<br />
here's a dock menu you might also want to look at:<br />
<!-- m --><a class="postlink" href="http://dhtml.discoveryvip.com/">http://dhtml.discoveryvip.com/</a><!-- m --><!--content-->Um, I dont know what exactly you are talking about.<br />
<br />
But I bet you can find out what you are doing at<br />
<br />
<!-- m --><a class="postlink" href="http://dynamicdrive.com">http://dynamicdrive.com</a><!-- m --><br />
<br />
they have many useful scripts<!--content-->Try to put this in the html code which goes inside the popup window:<br />
<br />
<body onblur="self.focus()"><br />
<br />
Warning: this will not allow other windows to receive focus...<br />
<br />
Some people (very annyoing people) put a timer in the code of the popup window to put focus on the popup ever so often (say every 30 seconds)<br />
<br />
<body><br />
<script language="javascript"><br />
function popover(){<br />
self.focus();<br />
}<br />
setInterval("popover",30000);<br />
</script><br />
..<br />
..<br />
<br />
</body><!--content-->
 
Back
Top