I’ve put the entire style.css from my theme as a Pastebin post.
http://pastebin.com/sCvgR17F
On my (working) setup it is the only file (other than screenshot.png) in a directory called “twentyfourteen-child” at the following location as per WordPress Child Theme instructions:
“myWordPressFolder/wp-content/themes/twentyfourteen-child”
If this doesn’t work then I’m not sure what to suggest!
For anyone who is still interested in this topic, I have made a few small adjustments to Nexcius’s theme, to extend the Twenty Fourteen to a complete Full Width layout.
The layout can be seen on my own site at http://www.willtaylor.org.
Just create a child theme using the CSS from the Pastebin link above, then add the following lines:
/*This section sets page to 100% width */
.site {
background-color: #fff;
max-width: 100%;
position: relative;
}
/*This section sets page header to 100% width */
.site-header {
background-color: #000;
max-width: 100%;
position: relative;
width: 100%;
z-index: 4;
}