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)?
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;
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With