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 trialOliver Sewell
16,425 Pointsmy 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
2 Answers
alborz
Full Stack JavaScript Techdegree Graduate 30,885 PointsHi 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.
Justin LeFurjah
12,347 PointsThanks Alborz :)
Justin LeFurjah
12,347 PointsJustin LeFurjah
12,347 PointsAre 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" />