[Solved] How to make list items transparent on IOS

Hi,

I am currently developping a Framework7 app on ios and android. On andoid, all my list items have a transparent background, on IOS it’s always with a white background. How can I change this for ios?

I tried with custom css:
.ios .item {
background-color: transparent;
}

.ios .list ul {
background-color: transparent;
}

but it doesn’t work. Any idea’s?

.ios .list ul {
background: none !important;
}

That should work. Make sure your CSS file is being loaded after the F7 CSS file, not before.

Thanks kerrydp, it works!