How to Hide Page from App Menu?

Sometimes there's a page in an app which you don't want to show in main app menu so here is a SCSS code for hiding such app page. (You can show that page using Internal App Page Link)

.layout li:nth-child(X) {
display:none;
}

Note: Here you have to change value of "X" with page number. If default layout class not work for any layout then use particular css class of that layout.

Example: Here in Sidebar Menu there are five pages and we want to hide 4th page - Link. So we have to put below SCSS code.


.layout.l9 ul.items li:nth-child(4) {
display:none;
}