Newbie question – which css file to edit

You generally shouldn’t edit your theme’s CSS files if the theme isn’t one you authored yourself. The reason is that these changes would be lost if you ever updated the theme.

The two recommended ways of adding CSS of your own are:

  1. Go to Appearance > Customize > Additional CSS and add your CSS here. This CSS is output in a <style> tag on the front end.
  2. Create a child theme. This is a bit more complicated, but the process is documented here. This will give you your own theme with its own CSS file that you can safely edit, while continuing to load the parent theme’s styles. The only problem is that different themes often work differently and there can be quirks for creating child themes for them. You should consult your theme’s documentation to see if there’s any information on creating child themes, or even a sample child theme that you can use. If not, and the process documented at the link I gave earlier doesn’t work as expected, you should contact the theme author for support.

tech