nrandecker / particle

A simple portfolio Jekyll theme:
https://nrandecker.github.io/particle/
MIT License
1.04k stars 1.1k forks source link

Devicon customization #3

Closed andynullwong closed 7 years ago

andynullwong commented 7 years ago

I'm having trouble finding where the Devicon/Icon headers are located or referenced to customize them. Can you help?

nrandecker commented 7 years ago

Yes, the Devicons can be found at devicon.

If you would like to modify which icons are used update the about.html file.

<i class="devicon-javascript-plain colored"></i>
      <i class="devicon-react-original-wordmark colored"></i>
      <i class="devicon-nodejs-plain-wordmark"></i>

Change these to whatever icon you want by updating the class ex.

<i class="devicon-angularjs-plain colored"></i>

The icons are loaded by a cdn link so you can just update the classes to whatever icon you want.

andynullwong commented 7 years ago

Thank you