-
DescriptionHi, How can I hide margin in HTML layout? I want only sidebar and body. Br, |
Beta Was this translation helpful? Give feedback.
Answered by
Juuso1
Aug 22, 2023
Replies: 1 comment 4 replies
-
See https://quarto.org/docs/output-formats/page-layout.html#html-page-layout for options to modify HTML layout. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problem solved! Solutions below (theme.scss file)
/-- scss:defaults --/
// The left hand sidebar
$grid-sidebar-width: 300px !default;
// The main body
$grid-body-width: 900px !default;
// The right hand margin bar
$grid-margin-width: 0px !default;
// The gutter that appears between the above columns
$grid-column-gutter-width: 1.5rem !default;