Make articles use up more space

Respondida

1 Comentários

  • Christopher Kennedy
    Zendesk Developer Advocacy
    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 the max-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 existing max-width:
     
    @media (min-width: 1160px) {
    .container {
    padding: 0;
    width: 90%;
    max-width: none;
    }
    }
     
     
    1

Por favor, entrar para comentar.

Powered by Zendesk