i mean the url showing in the browers adress like "http://juicebox.net/forum/viewtopic.php?pid=5575#p5575".
i would like to follow a link and the url stays at "http://juicebox.net/forum/viewtopic.php?pid=5575#p5575"...
A browser will usually display the URL of the page currently being displayed.
It is not possible within Juicebox to prevent a browser from displaying the URL of page which has been linked to.
For more information on the topic, please try a web search with terms such as 'URL masking' and 'link cloaking'.
but there are no hover effekt and no links on the nav bar... any ideas?
If you want your navigation menu to appear and disappear when the user hovers over the container, then you will need to implement either a CSS solution (such as on this web page) or a JavaScript/jQuery solution (such as on this web page).
In order for your links to be active, your navigation menu needs to be stacked on top of the gallery by assigning it a large z-index value.
For a solution to both problems, try using the following CSS on your web page (in addition to your own CSS from your post above):
#wrap {
position: fixed;
top: 7%;
width: 100%;
height: 7%;
}
#wrap, #navigation, #navigation a {
z-index: 9999;
}
#navigation {
display: none;
}
#wrap:hover #navigation {
display: block;
}... and then use HTML code such as the following for your navigation menu:
<div id="wrap">
<div id="navigation" >
<a href="../home/index.html" >| home</a>
<a href="../wedding/index.html" >| wedding</a>
</div>
</div>