Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS CSS Layout Techniques Grid Layout Testing our Grid

Grid layout not working right

I thought i was following along with this example but my navigation is off compared to gills can you guys check out my code and let me know what i am doing wrong so far.. any help would be great

grid layout style

/* Global ================================ */ .grid-container{ padding-left:10px; padding-right:10px; margin-left:auto; margin-right:auto; }

img { width: 100%; }

/* Media Queries ================================ */

@media (min-width: 768px) {

/* Columns 
=========================================== */

.grid-container>[class=^"grid-"] float:left; min-height: 1px; padding-left: 10px; padding-right: 10px; margin-left: 2%;

.grid-container>[class=^"grid-"]:first-child{ margin-left: 0;

} .grid-container>[class=^"grid-"]:last-child{ float: right;

} /* Columns are 65px wide, with 20px gutters =========================================== */ .grid-1{ width: 6.5%; }

.grid-2{

width:15%; }

.grid-3{ width:23.5%; }

.grid-4{ width:32%; }

.grid-5{ width:40.5%; }

.grid-6{ width:49%; }

.grid-7{ width:57.5%; }

.grid-8{ width:66%; }

.grid-9{ width:74.5%; }

.grid-10{ width:83%; }

.grid-11{ width:91.5%; }

.grid-12{ width:100%; }

/* Clearfix
================================ */

 .group:after,

.grid-container:after { content: " "; display: table; clear: both; } }

CSS/STYLES

/* Page Styles ================================ */

  • { -moz-box-sizing: border-box; box-sizing: border-box; } body { font: normal 1em/1.5 sans-serif; color: #222; background-color: #edeff0; } img { border: solid 1px; padding: 5px; }

/* Main Layout Styles ================================ */

.main-header { padding-top: 10px; padding-bottom: 10px; background-color: #384047; } .main-logo { margin-top: 0; margin-bottom: 0; font-size: 1.5em; } .main-logo a, .main-nav a { display: block; text-align: center; border-radius: 5px; color: white; text-decoration: none; padding: 10px 20px; } .main-logo a { background-color: #5fcf80; } .main-nav a { background-color: #3f8abf; } .main-footer { text-align: center; margin-top: 30px; padding-top: 5px; padding-bottom: 5px; background-color: #b7c0c7; }

@media (min-width: 768px) {

/* Main Layout Styles
================================ */

body {
    padding-top: 75px;
}
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
}

.main-nav{ text-align:right; } .main-nav li { margin-top: 6px; margin-left: 10px; display: inline-block; } .main-banner { background: #dfe2e4; text-align: center; padding: 50px 15px; margin-bottom: 20px; }

/* Imagery
================================ */

.feat-img {
    width: 45%;
    float: left;
    margin: 5px 20px 10px 0;
}

}

@media (min-width: 1px) and (max-width: 767px) { .main-nav li { margin-top: 12px; } }

HTML

<!DOCTYPE html> <html> <head> <title>Grid Layout</title> <meta name="viewport" content="width=device-width"> <link rel="stylesheet" href="css/normalize.css"> <link rel="stylesheet" href="css/grid.css"> <link rel="stylesheet" href="css/style.css"> </head> <body> <header class="main-header"> <div class="grid-container"> <h1 class="grid-2 main-logo"><a href="#">Logo</a></h1> <ul class="grid-8 main-nav"> <li><a href="#">Link 1</a></li> <li><a href="#">Link 2</a></li> <li><a href="#">Link 3</a></li> <li><a href="#">Link 4</a></li> </ul>
</div> </header> <div class="main-banner"> <h1>This is the Main Banner Heading</h1> <p>Andouille pork chop pancetta drumstick ground round beef ribs swine brisket ham.</p> </div> <div> <div> <h2>Primary Content</h2> <img class="feat-img" src="http://lorempixel.com/400/300" /> <p>Bacon ipsum dolor sit amet chicken pork ground round brisket corned beef ball tip shank tail salami filet mignon ham hock pork belly venison shankle. Pig kielbasa drumstick sausage pork chop boudin. Chicken t-bone salami pork chop, beef ribs kevin ham tri-tip beef venison biltong brisket.</p> <p>Venison strip steak meatball chicken, brisket prosciutto sirloin. Capicola drumstick brisket tri-tip salami. Chicken beef jerky, tail turkey prosciutto cow ham sirloin boudin tenderloin.</p> </div> <div> <h3>Secondary Content</h3> <p>Strip steak tenderloin kevin swine meatloaf capicola, doner beef turducken pancetta corned beef pork loin shoulder.</p> <hr> <p>Pork filet mignon leberkas, tail swine venison pancetta turkey shoulder brisket chalkers likes hamburgers.</p> <hr> <p>Meatball pastrami shoulder, brisket ribeye spare ribs turkey tongue strip steak t-bone.</p> </div> </div> <footer class="main-footer"> <p>Ā©2014 Example Layout</p> </footer> </body> </html>