Reputation: 485
I'm trying to make a collapsible with an image, to look like a listview. So, that the photo is close to the top:0, left:0;, no margin, no padding.
.ui-collapsible div ul .ui-corner-top, .ui-collapsible div ul .ui-corner-bottom {
margin: 0px !important;
padding:0px !important;
}
http://jsfiddle.net/sebababi/vM4R5/
I tried many options and didn't manage to figure it out
thanks Sebastian
Upvotes: 0
Views: 50
Reputation: 24738
jQM renders a button with padding within the collapsible heading, try the following CSS:
.ui-collapsible-heading .ui-btn-inner{
margin: 0px !important;
padding:0px !important;
}
Here is your fiddle updated: http://jsfiddle.net/vM4R5/1/
Upvotes: 2