问题
In my Jekyll site all content has specific width. As I understand this comes from /css/main.scss
:
$content-width: 800px;
$on-palm: 600px;
$on-laptop: 800px;
I tried using "local" css in order to overwrite these. And it didn't worked.
Also the above affects the whole content.
Is there any way to make the header (/_includes/header.html
) full width and keep the rest content with the default-centered width (inherited from above)?
回答1:
In _includes/header.html, change <div class="wrapper">
for <div class="wrapper-header">
.
In _sass/base.scss add :
.wrapper-header {
padding-right: $spacing-unit;
padding-left: $spacing-unit;
@extend %clearfix;
@include media-query($on-laptop) {
padding-right: $spacing-unit / 2;
padding-left: $spacing-unit / 2;
}
}
来源:https://stackoverflow.com/questions/38705593/full-width-header-in-jekyll