Transparent listview in jquery mobile version 1.4

149 views Asked by At

I found many examples with version 1.3, but as far I see there is not working version for jqm 1.4

CSS solution on listview for version 1.3 was:

background-color: transparent !important;
background-image: url('') !important;

Can someone suggets me fix for version 1.4 (1.4.4)?

tnx!

1

There are 1 answers

1
ezanker On BEST ANSWER

Just apply it to the LI itself:

li {
    background-color: transparent !important;
}

If you have anchor tags in the listitems, then apply it to the anchor:

li a {
    background-color: transparent !important;
}

DEMO