I have 0 knowledge about css so this might be very simple for you folks. I am trying to change ionic side menu animation from slide in to slide over. Basically, when user clicks on the side menu, content should not move and side menu should be on top of it. Reason I am trying to achieve this is because i have a cordova google map plugin which will not move when side menu pushes the content and there it looks really ugly.
Any suggestion/solution
I suggest to made your own menu. Basically you make a div with an absolute position and toggle it.
I made a simple jsfiddle so you can try this. jsfiddle
.mySide{position: absolute; left: 0; width: 40%; z-index: 100;}
Hope it helps.