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 Positioning Schemes Absolute Positioning

Files

/*Header, Banner and Footer Layout*/
.main-header {
        position: relative;
    }
    .main-header,
    .main-nav {
        position: absolute;
    }
    .main-logo {
        top: 0;
        left: 0;
    }
    .main-nav li {
        margin-right: 6px;
        margin-left: 6px;
        display: inline-block;
    }
    .main-banner {
        background: #dfe2e4;
        text-align: center;
        padding: 35px 15px;
    }

Hi, The Style.css does not look like the one who uses Guil. It is very upseting, because i try to learn fast and i have to know by magic why rules that we wrote in a previous video are no longer in the file. I have downloaded each project files and this is not the first time i have the same problem.