I am interested in using special buttons for my ionic 1 project, specifically the ion-button feature outlined on this page: Ionic Buttons. I attempted to create a Round Button and an Outline + Round Button:
<h2 class="sub-header" style="color:#4e67c3;">Oggetto {{ selectedproduct.idproduct }} <img src="img/cart.png" height="30" width="38"></h2>
<ul class = "licatalog">
<li>
<h4 style = "color:#4e67c3;"> {{ selectedproduct.productDesc.description }} </h4>
<h4 style = "color:#FF2E24;"> {{ selectedproduct.productDesc.producer.name }} </h4>
<h4> [sconto per utenti registrati] </h4>
<h4> € {{ selectedproduct.productDesc.price }} </h4>
<img src="../img/product/{{ selectedproduct.productDesc.rootImage }}" height="130" width="100">
</li>
</ul>
<button ion-button round>Round Button</button>
<button ion-button round outline>Outline + Round</button>
Unfortunately, the buttons are not displaying correctly, appearing as simple buttons instead of the desired customized ones:https://i.stack.imgur.com/19NN9.png
If anyone has insights on how to properly implement these buttons, I would greatly appreciate it. Thank you!