How to change the list background color and borders
Hi,
In my App, I have the page shown below, it's a list with grid inside. The list is linked to the database and any record added (by taking photo) is adding the list item. I colored the gird. However I need to make the list Items transparent (currently white) and remove the borders of these itmes. I tried the following:
CSS asset:
code
.listClass li a{
background-color:transparent!important;
background: transparent !important;
border: none !important;
}
/code
And:
code
[dsid = mobilelistitem_272] li a{
background-color:transparent!important;
}
/code
And:
code
.C_PhotoList
{
background-color: transparent !important;
border: none !important;
background: transparent !important;
}
/code
given that C_PhotoList is the list class name.
However, the list background remained white.
I also tred on page load to run:
code
Appery('photolist').css({'background-color': 'transparent'});
/code
Nothing has changed!
May I know if I am missing something here?
I deeply appreciate your help
Reproduce the problem:
link: http://appery.io/app/mobile-frame?src...
login credentials: haytham/star1234
Navigate: NavBar- messages -My photo
