How can I customize my default Jekyll theme to my preferred layout or design? #21543
-
| The basic themes available for Jekyll are a bit uninteresting and only meant to display projects. While this might be okay for some, it isn’t okay for me as I want to use Pages for my personal portfolio site. Any ideas? | 
Beta Was this translation helpful? Give feedback.
Replies: 6 comments
-
| Hi there, You can add custom css and html files into your Jekyll site. From this page on github help, you can create a scss/css file at /assets/css/style.scss and add the following to the top of the file: 
 Then any custom css can be put after these lines in this file and it will be included in your site. | 
Beta Was this translation helpful? Give feedback.
-
| Awesome! That was really helpful. Thank you for saving me time from scouring through so many help articles :smiley: | 
Beta Was this translation helpful? Give feedback.
-
| Check out this new Jekyll plugin by @benbalter https://github.com/benbalter/jekyll-remote-theme, not yet supported by GitHub Pages. | 
Beta Was this translation helpful? Give feedback.
-
| Thank you @dirtyf | 
Beta Was this translation helpful? Give feedback.
-
| Turns out jekyll-remote-theme is now whitelisted on GitHub Pages, so you can use any GitHub hosted theme with Jekyll. | 
Beta Was this translation helpful? Give feedback.
-
| Oh, I will definitely check that out. Thanks! | 
Beta Was this translation helpful? Give feedback.
Hi there,
You can add custom css and html files into your Jekyll site.
From this page on github help, you can create a scss/css file at /assets/css/style.scss and add the following to the top of the file:
Then any custom css can be put after these lines in this file and it will be included in your site.