Twenty Fourteen Theme Full Page Width

Share This Article
Lentor Mansion Preview Starts on 1st March

Twenty Fourteen is the latest theme that Patnotebook is using. It is a nice theme (and responsive too !).

But strangely, for a modern theme, it does not seemed to use up all the space in a wide screen.

Example:

Twenty Fourteen Theme White Space on Right

I could install a CSS editor plug in to WordPress or I can use the one that comes with WordPress Jetpack.
Jetpack Custom CSS

Either way, I made these code changes:

.site,
.site-header {
max-width: 100%;
}

.site-content .entry-header,
.site-content .entry-content,
.site-content .entry-summary,
.site-content .entry-meta, .page-content {
/* Original max-width: 474px */
max-width: 80%;
}

But funnily, the featured image on the top of each blog post looks ugly.
Twenty Fourteen Theme Ugly Featured Image

I researched and found this is probably an issue with the default image size and the Twenty Fourteen theme. Whatever 🙂
So I added these lines:

.hentry {
max-width: 80%;
}

.post-thumbnail img {
height: auto;
min-width: 100%;
}

The final code is this:
Jetpack Custom CSS for Twenty Fourteen Theme

Much better patnotebook now. A full page width blog now. There is a little impact on the iPad version though.. the pre-CSS changes looked much better on iPad than now.
But never mind… cannot win all..

Move on…

photo credit: CodeIgniter Code I via photopin (license)

Share This Article

2 Comments

  1. Too many ads between an article. Difficult to read. Sometimes, difficult to distinguish the ads and your image/picture. I like the previous one.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.