Currently, I am in the process of developing an Android app using the IONIC framework. Within this project, I have created three divisions that contain images with shadows applied to them. However, I am encountering an issue where the side menu bar is overlapping these divisions. Despite attempting to adjust the position and z-index properties, the problem still persists. Any assistance or guidance on resolving this matter would be greatly appreciated.
Image 1: Before sliding the side menu:
https://i.sstatic.net/R77r8.png
Image 2: After sliding the side menu:
https://i.sstatic.net/tCJ15.png
Snippet of the side menu code:
<!--SIDE MENU BAR STARTS -->
<ion-side-menu side="left">
<ion-content>
<ion-list>
<ion-item class="item-avatar-left"> <img src="/img/6.jpg">
<h1 id="menu-left-header-id">Hi REX !</h1>
<span class="badge badge-positive">18</span>
</ion-item>
<progress max="100" value="50"> </progress>
<a class="item item-icon-left" href="#/app/home">
<i class="icon ion-android-notifications-none" ></i>
Notifications
</a>
<a class="item item-icon-left" href="#/app/tutorials">
<i class="icon ion-monitor"></i>
Tutorials
</a>
<a class="item item-icon-left" href="#/app/practice/">
<i class="icon ion-ios-game-controller-b" ></i>
Practice
</a>
<a class="item item-icon-left" href="#/app/playlists/">
<i class="icon ion-android-create" ></i>
Tests
</a>
<a class="item item-icon-left" href="#/app/settings/">
<i class="icon ion-gear-a" href="#/app/settings" ></i>
Settings
</a>
<a class="item item-icon-left" href="#/app/playlist">
<i class="icon ion-android-document" ></i>
Documents
</a>
<a class="item item-icon-left" href="#/app/playlist">
<i class="icon ion-code" ></i>
About
</a>
</ion-list>
</ion-content>
</ion-side-menu>
</ion-side-menus>
<!-- SIDE MENU BAR ENDS-->
Snippet of the cards' code:
.container{
padding-top: 20px;
padding-left:20px;
padding-right:20px;
}
.card-pic{
margin: 20px 20px 0px 20px;
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
img{
max-width: 100%;
height: auto;
}
<div class="container">
<div class="card-pic item item-image">
<img class="card-img" src="img/phy.png">
</div></br>
<div class="card-pic item item-image">
<img class="card-img" src="img/maths.jpg">
</div></br>
<div class="card-pic item item-image">
<img class="card-img" src="img/chem.jpg">
</div>
</div>