html - Transparent ListView in Jquery -


i new html , jquery. @ time have html file contain blue background image , listview. want show transparent list view not showing transparent listview . net used many ways not working.

here mine code:

<div id="main_bg">         <div  class="transbox">         <ul data-role="listview"  id="sortedlist" style="margin-top: 40px;"  >             <li ><a href="#"><font color="blue"   size="5px;" >1</font></a></li>             <li  style="margin-top:25px; " ><a href="#"><font color="blue"  size="5px;" >2</font></a></li>             <li  style="margin-top: 25px; " ><a href="#"><font color="blue"  size="5px;" >3</font></a></li>         </ul>     </div> </div> 

here css:

#sorter .ui-li.ui-li-static.ui-btn-up-c {     height: 3.8%;     padding: 0;     font-size: 8px;     padding-left: 5px;     line-height: 1.8em; }  #sortedlist{     padding-right: 40px; } 

any help

working example: http://jsfiddle.net/gajotres/unujz/

css:

#sortedlist li {     background-color: transparent !important;     background-image: url('') !important; } 

Comments

Popular posts from this blog

php - mySql Join with 4 tables -

css - Text drops down with smaller window -

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -