Home › Forums › Porto Admin Template › Mail Compose SEND button CSS
Hi there,
https://preview.oklerthemes.com/porto-admin/2.2.0/mailbox-compose.html
The “SEND” button is currently just a link in your template, when I make this into a button it doesn’t look as nice. How can I use a class to make this a button instead of a href and still make it look as nice 🙂
Thanks!
Hello,
To change for a button please use this HTML:
<button><i class="far fa-paper-plane mr-2"></i> Send</button>
And this CSS in (css/custom.css) to maintain the same style:
.inner-toolbar > ul > li > button { border: none; background: none; color: #abb4be; } .inner-toolbar > ul > li > button:hover { color: #FFF; }
We hope this helps.
Kind Regards,
Rodrigo.
Works perfectly, thanks!!