more space for quarto content in html page-layout: full report

I have a Quarto report generating html with page-layout:full.
I use the report on a widescreen monitor and there is still a lot of white space on the left and right side of the content. How can I widen the content area? (e.g. get rid of the margins marked with red on the screenshow below)

Hello @Leen_Sonneveld ,

probably you solved your issue before now but

did you see https://quarto.org/docs/authoring/article-layout.html ?
Something like

:::{.column-page}
 your code and text chunks here
:::

```{r}
#| column: page

# your code here
```

should work. Or even 'screen' instead of 'page' ?

Hi Han,

when i use
#| column: screen
in a chunk, the whole screen is filled

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.