Topic: how to menu hiding? [SOLVED]
make juicebox gallery
i want gallery top menu hiding
help me plz
You are not logged in. Please login or register.
Showkase Support Forum → Showkase Support → how to menu hiding? [SOLVED]
make juicebox gallery
i want gallery top menu hiding
help me plz
If you want to hide a page from the navigation menu:
(1) In v1.5.0 or later...
On the 'Pages' tab, drag and drop the page onto the 'Hidden pages' text.
(2) In versions prior to v1.5.0...
Edit the page and deselect the 'Show in Nav' checkbox.
You need to have one page/link visible in your menu as your home page.
If you want to hide the entire navigation menu, then you will need to do this using CSS.
Add the following CSS to your theme's 'custom.css' file.
For example, if you are using the Kosel theme, then the file will be located here: 'showkase/_themes/kosel/css/custom.css'.
nav#nav {
visibility: hidden;
}
More information about Adding Custom Styles (using CSS to affect the style of the Showkase site) can be found here.
If you are not already using the latest version of Showkase and wish to upgrade, then instructions can be found here.
I wanted it to seem like Maribo 1.5.0 demo index
top menu does not seem but
demo website There seems juciebox page
help plz
If you'd like to hide your home page from the navigation menu under the Maribo theme, then add the following CSS to your 'showkase/_themes/maribo/css/custom.css' file.
/* Show/hide home page in nav */
nav > ul:first-child > li:first-child {
display: none;
}
(If you view the source of the Maribo demo's web page, you'll see this code being used.)
thanks ^^
I have resolved.
Thank you for posting back to let me know.
Showkase Support Forum → Showkase Support → how to menu hiding? [SOLVED]
Powered by PunBB, supported by Informer Technologies, Inc.