Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Full width header in jekyll?

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)?

like image 293
theshepherd Avatar asked May 24 '26 22:05

theshepherd


1 Answers

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;
    }
}
like image 187
David Jacquel Avatar answered May 26 '26 15:05

David Jacquel