Hi,
1. Here is a CSS for bold-underline links:
.post-content a {
text-decoration: underline !important;
font-weight: bold !important;
}
2. Sorry, but what do you mean by “numbered items”?
Regards, Duke
Hi Duke:
1. That CSS isn’t working.
2. Numbered items as seen on this page.
Hi,
The CSS is working, I’ve tested and it works fine. Please navigate to Appearance > Customize > Additional CSS and add the following snippet:
.post-content a {
text-decoration: underline !important;
font-weight: bold !important;
}
.post-content li {
line-height: 24px;
margin-bottom: 15px;
}
Kind Regards, Duke
-
This reply was modified 8 years, 1 month ago by
WP Royal.
That worked great Duke, thanks.
Now I’m wondering how to properly indent bulleted items. As you can see on this page, the text runs right under the bullet, but I’d like the text to align.
Hi,
I’m glad that your previous issue was resolved. Please add the following CSS to align the list bullets:
.post-content ul {
list-style-position: outside;
padding-left: 20px;
}
Regards