How to make ion-items transparent?

I found the solution in another forum post

My solution is
.my-menu {
background-color: #3f4041;
}

.my-menu .item, .my-menu .item-content, .my-menu .item-complex{
background-color: rgba(0,0,0,0);
color: #FFFFFF;
}

I add the class my-menu to ion-content in my side menu.

I don’t know if it’s a good way but it worked for my…I am open to better solutions =)

2 Likes