I was wondering if it's possible to have a list item like the sample below (I tried to add an image but this site would not allow it. I"m guessing b/c I'm new). As you can see the icon is on the left, the "header image" is aligned with "image2" and they seperated by a horizontal line. Then you can see the text fields side by side (also seperated by the horizontal line)
------------------------------------------------------------------------------
|**********|___________Header Image______|__IMAGE2_|
|**ICON**| -----------------------------------------------|.,,,,.,,,.........|
|**********|................... TEXT ............................|,,,TEXT..,,,,|
|**********|..........................................................|..................|
------------------------------------------------------------------------------
I saw that there are ways to override the list properties with CSS, however I have very little experience with this and have no clue where to even being making the changes. I saw this sample on a website and it has the icon on the left but not the other parts that I need.
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css">
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script>
</head>
<body>
<div data-role="page" id="pageone">
<div data-role="main" class="ui-content">
<h2>Split Buttons</h2>
<ul data-role="listview" data-inset="true">
<li>
<a href="#">
<img src="chrome.png">
<h2>Google Chrome</h2>
<p>Google Chrome is a free, open-source web browser. Released in 2008.</p>
</a>
<a href="#">Some Text</a>
</li>
<li>
<a href="#">
<img src="firefox.png">
<h2>Mozilla Firefox</h2>
<p>Firefox is a web browser from Mozilla. Released in 2004.</p>
</a>
<a href="#">Some Text</a>
</li>
</ul>
</div>
</div>
</body>
</html>