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

WordPress Ecommerce with WordPress and WooCommerce Extending WooCommerce WooCommerce Widgets

Natalia Karolinskaya
Natalia Karolinskaya
9,367 Points

Styling wordpress website with CSS

Where can I found information about hot to style wordpress with CSS?

Thanks

Hi Natalia,

Will you please add additional details about what you want to accomplish?

WordPress styling is contained within themes. Therefore, are you wanting to create a custom theme or modify the styling of an existing theme?

3 Answers

Natalia Karolinskaya
Natalia Karolinskaya
9,367 Points

Hi Evan,

I would like to change the styling of an existing theme. Thank you.

try using the simple css plugin https://wordpress.org/plugins/simple-custom-css/

In my opinion, and from what I've read elsewhere, the recommended approach is to create a child theme of the theme you would like to modify.

With a child theme, you are only overwriting the files necessary to make your changes β€”Β many are just a style.css file... The benefit is that the parent theme can be updated without overwriting your changes.

Treehouse has a video on this: https://teamtreehouse.com/library/how-to-make-a-website-with-wordpress/customizing-wordpress-themes/how-to-make-child-themes

In the Teacher's Notes, there's a link to the WordPress Codex that has additional technical guidance on child themes.