Hi, I wondering if its possible to use FontAwesome inside a dropdown menu at the admin panel. The user should be able to choose between the Icons he want to show behind several headlines.
My idea was to use it like this - but that's not working
I guess the html tags are not working inside the opt_values. Is there an other way to show the icons?
My idea was to use it like this - but that's not working
- Code: Select all
<cms:editable name='my_css' type='message'> <style type="text/css"> @import url("<cms:show k_site_link />css/font-awesome.min.css"); #f_icon_choices option{ font-family: FontAwesome; color:#006600;} </style> </cms:editable> <cms:editable name="icon_choices" label="Icons" desc="Auswahl der Icons" opt_values=' <i class="icon-info-sign icon-1x"></i> | <i class="icon-comments-alt icon-1x"></i>' type='dropdown' group='promo01' order='2' group='promo01'/>
I guess the html tags are not working inside the opt_values. Is there an other way to show the icons?