How do I add custom social links in chirpy? #2172
-
Checklist
How did you create the site?Generated from DescriptionWould like to add custom social links with icons in the sidebar footer and author on posts. Operations you have already triedI found a few jekyll references but most are for the default theme Minima rather than Chirpy specifically.
The blog post references Anything else?my current socials settings in social:
# Change to your full name.
# It will be displayed as the default author of the posts and the copyright owner in the Footer
name: iSpeakNerd
# email: # change to your email address
links:
# The first element serves as the copyright owner's link
- https://twitter.com/ispeak_nerd # change to your Twitter homepage
- https://github.com/ispeaknerd # change to your GitHub homepage
- https://warpcast.com/ispeaknerd # change to your Warpcast homepage
# Uncomment below to add more social links
# - https://www.facebook.com/username
- https://www.linkedin.com/in/ispeaknerd
- https://paragraph.xyz/@ispeaknerd.eth |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
You can add them in For modifying footer look in |
Beta Was this translation helpful? Give feedback.
-
what finally worked for me:
---
---
@use 'main
{%- if jekyll.environment == 'production' -%}
.bundle
{%- endif -%}
';
/* append your custom style below */
@font-face {
font-family: 'icomoon';
src: url('/assets/fonts/icomoon.eot?weotyf');
src: url('/assets/fonts/icomoon.eot?weotyf#iefix') format('embedded-opentype'),
url('/assets/fonts/icomoon.ttf?weotyf') format('truetype'),
url('/assets/fonts/icomoon.woff?weotyf') format('woff'),
url('/assets/fonts/icomoon.svg?weotyf#icomoon') format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
}
[class^='icon-'],
[class*=' icon-'] {
font-family: 'icomoon' !important;
speak: never;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-fc-arch:before {
content: '\e900';
}
.icon-fc-arch-inverted:before {
content: '\e901';
}
- type: farcaster
icon: "icon-fc-arch"
url: "https://warpcast.com/ispeaknerd" Note: cannot change icon names after downloading from icomoon, so make sure your svg files are named however you want to reference them |
Beta Was this translation helpful? Give feedback.
what finally worked for me: