Keeping same text alignment on different button types
Version jQuery: 1.2
I'm using both collapsible and link buttons on the same page. The issue I'm having is the text position on linked centered and collapsible text on the left.
How can I place the test in the same position on the buttons?
- <div data-role="controlgroup" data-inline="true" data-mini="true">
- <a href="appetizers.html" data-role="button" data-theme="c" data-iconpos="right" data-icon="arrow-r">Appetizers</a>
- <a href="soups-salads.html" data-role="button" data-theme="c" data-iconpos="right" data-icon="arrow-r">Soups & Salads</a>
- <a href="pizza.html" data-role="button" data-theme="c" data-iconpos="right" data-icon="arrow-r">Pizzas</a>
- <a href="#" data-role="button" data-theme="c" data-iconpos="right" data-icon="arrow-r">Sandwiches</a>
- </div>
-
- <div data-role="collapsible" data-icon="plus" data-iconpos="right" data-inset="yes" data-mini="true">
- <h2 align="center">Pasta Dishes</h2>
- <ul data-role="listview" data-inset="true">
- <li><a href="specPasta.html">Speciality Pasta Dishes</a></li>
- <li><a href="pasta.html">Italian Pasta Dishes</a></li>
- <li><a href="casseroles.html">Baked Casseroles</a></li>
- <li><a href="tortellini.html">Tortellini</a></li>
- </ul>
- </div>
- <!-- /pasta dishes -->
- <div data-role="collapsible-set">
- <div data-role="controlgroup" data-inline="true" data-mini="true">
- <a href="seafood.html" data-role="button" data-theme="c" data-iconpos="right" data-icon="arrow-r">Seafood</a>
- <a href="hicken.html" data-role="button" data-theme="c" data-iconpos="right" data-icon="arrow-r">Checken Entrees</a>
- <a href="veal" data-role="button" data-theme="c" data-iconpos="right" data-icon="arrow-r">Veal Entrees</a>
- </div>
I hope this is enough information for someone to help?