For your theme, it’s
.void-grid span.updated-on {
display: none;
}
You can’t use general tutorials, you need to look at the markup used by a specific theme.
To add or override CSS: use the “Additional CSS” option in the customizer. https://codex.wordpress.org/CSS#Custom_CSS_in_WordPress
Learn to use the Chrome Developer Tools to help you see and test changes to your CSS.
Hi! I inspected the page and found it by following your instructions.
.entry-meta .updated-on {
display: none;
}
It’s working.
I wasn’t being lazy, but I also didn’t know where to start learning.
Searching on Google for clues leads me to a lot of examples and I didn’t know what to do.
Thank you!