Archived topic
How to point at sidebar with css?
1 reply · Started by Leif on September 5, 2020
I'm bad as css. I added this to my additional css to put underlines on my links (maybe I can use something else than css?)
.entry-content a {
text-decoration: underline;
}
But I don't know the way to point at my sidebar's links as well. Can you tell me the id (e.g. entry-content)?
Also can you tell me where to find this stuff, I can't figure out what those IDs are called so I can never look them up T_T
Hi there,
This should include the content and sidebar:
.site-content a {
text-decoration: underline;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps :)