You’ll have more success if you can link to a public repo. What you have above isn’t enough to go on.
Typically you need to copy all of the theme’s _sass files to your local repo since overriding a partial or two doesn’t work. You need the whole set due to how Jekyll processes them when using themes.
You might be better off copying over assets/css/style.scss and add your custom CSS after the @import.
Any CSS declarations you make here will definitely take affect vs. trying to do it in a Sass partial that Jekyll likely is ignoring because of how bundled theme’s work.
Thanks, Michael. Sorry I took so long to respond.
I did copy _sass, but in the minima-2.5.0\assets folder, there is no css folder and subsequently, no style.css. I do have a file: docs\assets\css\style.css that looks like this:
---
# Only the main Sass file needs front matter (the dashes are enough)
---
@import "minima";
@import "minima/syntax-highlighting";
@import "my_overrides";
body, p, ul, li, a
{
font-family: serif, Times, Times New Roman;
}
h1, h2, h3, h4, h5, h6
{
font: san-serif, Helvetica, Arial;
}
But it’s not paying attention to it.
And sorry for all the vagueness, but I don’t understand Jekyll and I’m finding it hard to keep track of all the bits and pieces.
I’m thinking at this point it might work best if I scraped it back down to the metal and start over, but now that my site is live, I don’t wanna risk downtime.