Titles are bold only
Problem:
Hello, articles titles are bold only, there's no way to unbold them within the module settings.
Steps To Reproduce:
Additional Information:
Device:
Operating System:
Browser:
Screen Resolution:
Reference:
Before submitting your issue, please ensure the following:
- [x] You have reproduced the issue using the latest code from the master branch of this repository.
- [x] You searched Github for the issue and found no reports of the issue currently open.
- [x] You properly formated the issue title –
Scope :: One sentence to describe the issue. - [x] You have provided a detailed description of the issue.
- [x] You have provided any/all relevant information: screenshot, screencast, ticket URL.
- [x] You have provided the steps that one must take to reproduce the issue.
I support this!
.divi-100-article-card .et_pb_blog_grid .article-card__title { font-weight: normal !important; }
The plugin rewrites the dom and introduces a whole new set of style and elements. However to remove this, you can add this code, similar to what @mozakdesign has.
.divi-100-article-card .et_pb_blog_grid .article-card__title {
font-size: inherit !important;
}
I'll be pushing a fix to make it inherit the theme style.
- [ ] Inherit theme font styles.
.divi-100-article-card .et_pb_blog_grid .article-card__title { font-weight: normal !important; }
This would force the font-weight to normal, module settings would still be overriden.
@andyhqtran just tried it, it's not working at all. The title keeps being bold, does not use the module settings at all.