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 trialColin 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,118 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,118 PointsNot a problem!