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 How to Make a Website Adding Pages to a Website Add Iconography

Oliver Sewell
Oliver Sewell
16,108 Points

my files in the left grey window are in the wrong order , is that why i cant see the css styles how do i move them

how do i move the files above and below one another on the left hand side

Justin LeFurjah
Justin LeFurjah
12,347 Points

Are you talking about the treehouse workspace window? The order of the files there shouldn't make a difference.

Make sure your stylesheet is linked to in the html, something like this:

<link href="/stylesheets/style.css" rel="stylesheet" type="text/css" />

2 Answers

alborz
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
alborz
Full Stack JavaScript Techdegree Graduate 30,885 Points

Hi Oliver, going off of what Justin said, the code would look something like this in your HTML file if you want to link the stylesheet with the HTML file:

<link rel="stylesheet" href="PUT_STYLESHEET_FILEPATH_HERE">

The position of the files on the workspaces window doesn't make any difference. Hope this helps.