Hey guys. I’m new to this thing and I can’t seen to find how to change the “logo” thingy in my site. I’m using Jekyll Chirpy Theme and I want to modify the image on the tab when you open the site. Anyone know how? Thanks !!
Are you referring to the favicon that shows in the browser tab next to the page title?
if so that theme has this page:
I should also say you could change how that works and do it on your own. The favicon is set in the meta data for each page, you could see how they are doing it and modify it.
Sometimes generating a favicon is a pain - you can also use emoji now which can be an easy way to do it. Google is your friend here.
The logo
is the avatar
as per the theme layout.
You can change it by changing avatar
value [ line 83 in source file ] in _config.yaml.
1 Like
To change the avatar , follow the bellow steps
- upload the .png file file to a location on the GitHub repo where the theme is hosted
- copy the path for the image assets/img/avtar/profile.png
- Do not add any CDN profile
- use the local path in the config.yml → avatar: /assets/img/avtar/profile.png
Refer: portfolio.amitabh.online/_config.yml at main · amitabh90/portfolio.amitabh.online · GitHub
1 Like