- This topic has 6 replies, 2 voices, and was last updated 4 years, 6 months ago by .
Viewing 7 posts - 1 through 7 (of 7 total)
Viewing 7 posts - 1 through 7 (of 7 total)
- You must be logged in to reply to this topic.
Home › Community Forums › General › Theme CSS overrides Better Font Awesome css
Tagged: better font awesome, css, Font Awesome, style sheets
Hi Wes
I’ve worked with a few of your themes over the past couple of years. Love the work you do.
So now I’m working on Elevate.
I’ve added the better font awesome plugin so the client can use the TinyMCE and shortcodes and have the site always use the most up to date font awesome files.
I commented out your reference to FA in the functions file but a couple of things occur that override the BFA stylesheet.
specifically, the list-style-type: disc still shows up.
I’ve had this happen on other themes as well, but not with BFA, just in general…
Here’s my dev site I’m working on at the moment:
http://162.214.27.41/~realfpa7/olives-healthy-benefits/
It looks like they don’t have any code that styles this specific part of the list, so the theme’s default css shows up. The code that is being used can be found on line 1699 in the style.css –
.entry-content ul > li {
list-style-type: disc;
}
You can either remove/change that to none
or add the override in your custom css section –
.entry-content ul > li {
list-style-type: none;
}
Let me know if that helps
nailed it.
Thanks for taking time out on a Saturday to help me with my css.
I really appreciate it.