I would like to have the "lorem ipsum" text extend as far as possible to the right. However, when I add the "Some Text" label to the right side of the listview, the "lorem ipsum" text no longer breaks as far to the right as it did without it. How do I have to override the CSS classes in order to get the desired format? (I have tried to override the JQ mobile CSS files (.ui-li-aside formats the label I believe). See the jsfiddle link for an example with the label and without.
http://jsfiddle.net/soa9k46w/1/
<div data-role="content">
<ul data-role="listview" data-icon="false">
<li> <a href="#">
<h2>Some Title</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</a>
<p class="ui-li-aside ui-li-count"><strong> Some Text</strong>
</p>
</li>
</ul>
</div>