1 (edited by 35OL 2017-06-14 11:34:11)

Topic: How to disable Juicebox page navigator url ?

How to disable Juicebox page navigator url ?

Post's attachments

ima.jpg
ima.jpg 157.27 kb, file has never been downloaded. 

You don't have the permssions to download the attachments of this post.

Re: 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.

Re: How to disable Juicebox page navigator url ?

thanks

Re: How to disable Juicebox page navigator url ?

You're welcome!