I've recently launched a "stunning Jekyll" blog/GitHub page, and now I want to tweak the font color of the page title and subtitle.
Specifically, I'm trying to update the text color:
Stunning Jekyll
Create an elegant and straightforward website in just minutes
Despite my efforts, I can't seem to locate the proper section in the main.css
. I've checked the index.html
, the config.yml
, and the css
folder, but I'm unable to pinpoint where I can modify the color.
In the main.css
file, around line 24 to 35, I have:
h1,h2,h3,h4,h5,h6 {
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 800;
}
a {
color: {{ site.link-col }};
}
.header_class {
color: red;
}
Within the index.html
file on line 28, there is:
<h1 class="header_class">{% if page.title %}{{ page.title }}{% else %}<br/>{% endif %}</h1>
Current website:
GitHub page: https://github.com/daattali/beautiful-jekyll