Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Colin Boardway
Courses Plus Student 14,522 PointsMultiple CSS stylesheets
I'm following along this course to port my current static site into a wordpress backend. I have about 20 different css style sheets. Do I need to copy the contents of each of of these stylesheets into one mass 'style.css' file?
3 Answers

Jacob Mishkin
23,103 PointsNo you don't. Talk a look at the link, it should explain how to add your style sheets into a theme:
https://wordpress.org/support/topic/how-to-add-multiple-css-files-in-your-wordpress-theme
I hope this helps.

Jenny Veens
10,896 PointsHi Colin,
You don't necessarily NEED to combine all these stylesheets into one, but I would advise that you do so. When you link multiple stylesheets, a separate request has to be made for each one, so reducing this number can improve the performance of your site. If you need to have separate stylesheets to stay organized, I would recommend looking into a build too such as Gulp or Grunt, which will concatenate your CSS into one production file for you.

Colin Boardway
Courses Plus Student 14,522 PointsYou rock, thanks!

Jacob Mishkin
23,103 PointsNot a problem!