1

I have been trying to integrate Font Awesome library into my Magento store. I have been trying to add CSS links onto my Local.xml file but doesn't seem to work.

Viraj Verma
  • 19
  • 1
  • 3

1 Answers1

5

Paste the following code into the <head> section of your Magento head.phtml.

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">

OR

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

OR

you can go to System > Configuration > Design > HTML head > Miscellaneous Scripts and can add the above link.

Amir Iqbal
  • 831
  • 11
  • 28