The width is determined by your theme. I only looked at an example site provided here but in this particular case, the element you need to deal with appears to be main-content-wrap
. I came to this conclusion by right clicking on my browser and picking "Inspect Element" (firefox) or "Inspect" (chrome) which gives you information about which elements are present and how are they effected by existing CSS. From here you can see that it has a default max-width
of 750px. You need to create a CSS file to overwrite this property. The file only has to contain
.main-content-wrap{
max-width: [insertYourDesiredWidthHere]px
}
Save this file somewhere under your static
directory. Ideally in a folder called css
for convention's sake
The way to actually get this file in use is also theme dependent. Typically this is controlled by the customCSS
parameter in the config.toml
Looking at the example site at the theme repository I can see commented out lines that are describing how to do this.
So just add
[[params.customCSS]]
href = "pathToFileUnderStatic"