jekyll-theme-minimal-resume
jekyll-theme-minimal-resume copied to clipboard
Is there a way to change the icons with little CSS knowledge?
Yes. The code here references Font Awesome icons.
For example, if you wanted to change the email icon from mail
to a paper-plane
do the following:
CHANGE THIS
<a aria-label="Send email" href="mailto:{{ site.email }}"><i class="icon fa fa-envelope"></i></a>
TO THIS
<a aria-label="Send email" href="mailto:{{ site.email }}"><i class="icon fa fa-paper-plane"></i></a>