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

HTML Build a Simple Website Creating a Website Structure Working with Grids

Alvin Watson
Alvin Watson
393 Points

Grid.css and Normalize.css

Please help me with this. I can not get neither one them to work for me. I am not sure if downloaded the files correct or not. Please help with some direction.

5 Answers

How are you linking it in the .html?

Alvin Watson
Alvin Watson
393 Points

I have it in my web folder with the images ect...... Not really sure if i have it saved correctly. Grid.css nor Normalize.css. seem to be working. It is not centering my site nor is it taking away the frame. I download the normalize and save it as .css Do you a corrected download for each?

James Eden
James Eden
1,539 Points

Hi Lavin,

This is what I have:

The normalize.css and grid.css are both inside the CSS folder. The CSS folder is also inside my main folder, along with all the other files; index.html etc. Lines 4 and 5 below are pointing towards the css files. So for example "css/grid.css" says that the grid.css is INSIDE the css folder.

<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Smells Like Bakin Cupcake Company</title>
    <link rel="stylesheet" href="css/normalize.css" type="text/css" media="screen">
    <link rel="stylesheet" href="css/grid.css" type="text/css" media="screen">
</head>

I think that should work...

J

James Eden
James Eden
1,539 Points

Hi Alvin! Sorry about the typo!... Miss-spelled your name :-/

J

Alvin Watson
Alvin Watson
393 Points

Thanks, no problem about the typo. :-) I will try this and see if it works but, I think its has something to do with the if the downloading the correct folders. I've done great until this point.