Make articles use up more space
回答済みIs it possible to display articles where they use up more white space and not just the center of the page?
Example:
-
Hello,
The exact steps for you may vary based on the customizations you've made to your theme. But based on the styles from the Copenhagen theme, this could be due themax-width
set for the sub-nav and article content container (that has a "container" class applied). In the Copenhagen theme, the max-width is set to 1160px. For larger viewports, you can override that to set a different value or eliminate the max width entirely. To do so in the theme's style.css file, locate the existing media query that applies styles to the container for viewports wider than 1160px:
@media (min-width: 1160px) {
.container {
padding: 0;
width: 90%;
}
}
And add a property to the rule to override the existingmax-width
:
@media (min-width: 1160px) {
.container {
padding: 0;
width: 90%;
max-width: none;
}
}
サインインしてコメントを残してください。
1 コメント