• I see that there’s an option to make only the first post in the archive “extra wide”.

    Does anybody know where to customize the theme so that every single post in the archive occupies the full length? I see the CSS class (post-19 is full width and post-4 are smaller) but can’t locate them in the files.

Viewing 1 replies (of 1 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Thanks for using Chosen!

    Here’s the CSS you can use to do that:

    
    @media all and (min-width: 56.25em) {
    	.blog .entry,
    .archive .entry,
    .search .entry {
    	width: 100%;
    	float: none;
    	margin-right: 0;
    }
    .blog .post-header,
    .archive .post-header,
    .search .post-header {
    	text-align: center;
    }
    	.blog .post-header,
    	.archive .post-header,
    	.search .post-header,
    	.blog .post-content,
    	.archive .post-content,
    	.search .post-content {
    		padding: 0 9.08%;
    		text-align: center;
    	}
    	.blog .post-title,
    	.archive .post-title,
    	.search .post-title {
    		font-size: 3.188em;
    		line-height: 1.314;
    	}
    }

    Please copy & paste the code above into the “Additional CSS” section in the Customizer (Appearance > Customize), and it will take effect right away.

Viewing 1 replies (of 1 total)
  • The topic ‘How to make all posts “extra wide”’ is closed to new replies.