Keeping same text alignment on different button types

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?

  1. <div data-role="controlgroup" data-inline="true" data-mini="true">
  2. <a href="appetizers.html" data-role="button" data-theme="c" data-iconpos="right" data-icon="arrow-r">Appetizers</a>
  3. <a href="soups-salads.html" data-role="button" data-theme="c" data-iconpos="right" data-icon="arrow-r">Soups &amp; Salads</a>
  4. <a href="pizza.html" data-role="button" data-theme="c" data-iconpos="right" data-icon="arrow-r">Pizzas</a>
  5. <a href="#" data-role="button" data-theme="c" data-iconpos="right" data-icon="arrow-r">Sandwiches</a>
  6. </div>
  7. <div data-role="collapsible" data-icon="plus" data-iconpos="right" data-inset="yes" data-mini="true">
  8. <h2 align="center">Pasta Dishes</h2>
  9. <ul data-role="listview" data-inset="true">
  10. <li><a href="specPasta.html">Speciality Pasta Dishes</a></li>
  11. <li><a href="pasta.html">Italian Pasta Dishes</a></li>
  12. <li><a href="casseroles.html">Baked Casseroles</a></li>
  13. <li><a href="tortellini.html">Tortellini</a></li>
  14. </ul>
  15. </div>
  16. <!-- /pasta dishes -->
  17. <div data-role="collapsible-set">
  18. <div data-role="controlgroup" data-inline="true" data-mini="true">
  19. <a href="seafood.html" data-role="button" data-theme="c" data-iconpos="right" data-icon="arrow-r">Seafood</a>
  20. <a href="hicken.html" data-role="button" data-theme="c" data-iconpos="right" data-icon="arrow-r">Checken Entrees</a>
  21. <a href="veal" data-role="button" data-theme="c" data-iconpos="right" data-icon="arrow-r">Veal Entrees</a>
  22. </div>
I hope this is enough information for someone to help?