So I am happy with my theme, and feel comfortable with the categories and tags, and such. But you know what I really want to learn to do in WP? Like HTML lite for fonts for dummies or something like that.
I find I want to do super simple things with the colours and fonts on my sites, but am often confined by the theme I’ve chosen. For reference, I’m thinking of my techforteaching.ca sites, which almost all use the Lodestar theme.
I’m digging this theme, but I find the grey colour that it uses for headings and hyperlinks to be almost ignorable by my eyes/mind. I would love to learn how to adapt the theme to let me change these to black and underlined, so they stand out more to my readers. I’d also love to get around the WordPress trend of using All Caps for titles, menus and headings.
Is this at all possible? Can anyone point me to anywhere that I can learn to do this?
Much thanks for all the help so far, this has been fantastic!
There are definitely ways to do this; HTML is what describes the content of your sire (what is a heading? what is a paragraph?) but what you want to learn more about is CSS (Cascading Style Sheets), which controls the formatting for the HTML elements.
You can make such modifications w/o interfering or editing theme files by adding custom CSS to your site via the WordPress Customizer- see
There’s a bit of some learning to figure out CSS. You also will want to learn to use your browser inspector tools to not only see the CSS styles for specific parts of your site (like the grey headings), but to test out changes in the browser. Maybe try
This i not changing your site, just letting you experiment in your browser with the CSS styles for your headers. If I want to use this in WP, I need the CSS code I changed (copy from the inspector):
.entry-content h2 {
color: #e42c2c;
}
If I was logged into your site as an admin, I would use the Customize link in the admin bar, or Appearances - Customize in the Dashboard to open the WordPress customiser, find the Additional CSS box, and paste in this code. You can preview the changes as you add CSS (its not showing on my site because the theme is different)
OMG thank you! I have been pretty daunted by CSS this whole time, but now with the site coming together, it might be the right time to start learning some ways to use it! You always deliver, Alan!