Hide the menu bar on the top left corner

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
Bishu
User
Posts: 429

Hide the menu bar on the top left corner

Post by Bishu »

I am trying to hide the menu (side navbar) on the left top corner
i use the code as
$('#ew-navbar').hide();

It hide the menu but when there is slow internet and refresh the page
first it shows the menu bar and hide again.

Is there any way to hide from the php code. so that it does not flash when we refresh the page.


arbei
User
Posts: 9384

Post by arbei »

You may just add CSS under the HTML > Styles > User tab.


mobhar
User
Posts: 11727

Post by mobhar »

Put this code under the following location "HTML" -> "Styles" > "User" tab:

#ew-navbar{display: none;}


Post Reply