Topic: How to disable Juicebox page navigator url ?
How to disable Juicebox page navigator url ?
You are not logged in. Please login or register.
Juicebox Support Forum → Juicebox-Pro Support → How to disable Juicebox page navigator url ?
How to disable Juicebox page navigator url ?
From your screenshot, it looks like you are referring to the Kosel theme in Showkase.
You can hide individual pages from the navigation menu by dragging and dropping the page name onto 'Hidden pages' on the 'Pages' tab (and then clicking 'Save' and 'Publish'). The page's URL will remain the same but there will no longer be an entry for it in the navigation menu.
There is no way to disable the navigation menu completely from within the Showkase interface (other than dragging and dropping all page named onto 'Hidden pages') but you could hide the navigation menu using CSS if you like.
Try adding something like the following to your '/showkase/_themes/kosel/css/custom.css' file:
#nav {
display: none;
}
If you want to hide the navigation menu only on a certain page, then you can check the page's id (from the 'class' attribute in the page's <body> tag) and use something like the following in your '/showkase/_themes/kosel/css/custom.css' file:
.page-2 #nav {
display: none;
}
More information about using custom CSS within Showkase can be found in the Adding Custom Styles and Fonts support section.
thanks
You're welcome!
Juicebox Support Forum → Juicebox-Pro Support → How to disable Juicebox page navigator url ?
Powered by PunBB, supported by Informer Technologies, Inc.