I don't know how to remove the mobile navigation on my site. It's located in the top right hand corner (3 lines). When you click on it, it toggles to an X.
I only want the mobile navigation to be displayed when logged into the site.
This functionality currently works on any viewport with min-width:768px
Posted By Tracey on 06 Oct 2021 10:57 PM I don't know how to remove the mobile navigation on my site. It's located in the top right hand corner (3 lines). When you click on it, it toggles to an X. I only want the mobile navigation to be displayed when logged into the site. This functionality currently works on any viewport with min-width:768px
Edit the Skins ascx file and wrap the element you want to hide in
<% If Request.IsAuthenticated %>
<% End If %>
OR
<% If (Request.IsAuthenticated) { %>
<% } %>
Some ascx files are VB based some C#
These Forums are for the discussion of the open source CMS DNN platform and ecosystem.
For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:
Awesome! Simply post in the forums using the link below and we'll get you started.