Is there any way to hide the side menus from a particular topic when a SideNav skin is used? I am using a SideNav skin and for the Homepage, I do not need the Side Menus, instead, I use tiles. Is there any way to achieve this?
TIA
Hide Side Menus from a Topic (landing page) in SideNav skin
Re: Hide Side Menus from a Topic (landing page) in SideNav s
In the HTML, you'll see the menu is displayed inside <nav class="sidenav-wrapper">
So to hide that for your home page, add a new stylesheet (e.g. home.css) and link that to the topic, and in the stylesheet include:
So to hide that for your home page, add a new stylesheet (e.g. home.css) and link that to the topic, and in the stylesheet include:
Code: Select all
nav.sidenav-wrapper
{
display: none;
}Re: Hide Side Menus from a Topic (landing page) in SideNav s
It did work. Thank you so much, Dave. I appreciate your help!Dave Lee wrote:In the HTML, you'll see the menu is displayed inside <nav class="sidenav-wrapper">
So to hide that for your home page, add a new stylesheet (e.g. home.css) and link that to the topic, and in the stylesheet include:Code: Select all
nav.sidenav-wrapper { display: none; }