1

For building web-page, I use the github pages and jekyll remote theme. I am not familiar with jekyll and remote theme, so cannot know which part should be modified and which part cannot be in the remote theme.

Also, I am currently using the so-simple-theme as a remote theme and want to change the layout of the blog postings to make the article section wider (at default, most of the pages are filled with empty space, so cannot see the code very clearly) To make the post section itself to be wider, which file and content should be changed?

ruach
  • 1,369
  • 11
  • 21

1 Answers1

0

My first pass on the so-simple-theme code base, it looks like there are some preset max-width for blog postings. It uses a SCSS variable $main-max-width code here that is set in _variables.scss code here these preset max width variables code here.

I was able to increase the list of posts' width by setting $main-max-width: $large !default; in _variables.scss.

With default $medium

enter image description here

With $large

enter image description here

Kin
  • 1,435
  • 10
  • 16