Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I'm using PhoneGap and in my pages I'm trying to use FontAwesome but it doesn't work?

I created application with PhoneGap for Android and I'm using FontAwesome icons in my app, but I can't see icons but just squares. I include FontAwesome like this

 <link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">

And I'm using it like this

<i class="icon-circle "></i>

Do I need to move the FontAwesome folder somewhere else, now it is in www->fontawesome and the file from which I'm calling it it's also in www folder, or I need to do something else I can find any useful answer?

like image 610
DejanG Avatar asked Nov 13 '22 00:11

DejanG


1 Answers

https://github.com/FortAwesome/Font-Awesome/issues/1094

I think this explains it You have to go into the font-awesome css and make a change to the line

  text-rendering: optimizelegibility;

change it to

  text-rendering: auto;
like image 188
Leo Avatar answered Nov 14 '22 22:11

Leo