Support Home Page › Forums › Joomla Software › Easy Folder Listing Pro Plugin › Override templatebullets and use EFLP's bullets › Re: Override templatebullets and use EFLP's bullets
Hi Stefan,
Thanks for using my plugin, and for posting your question.
You should be able to force styles on the list by editing the CSS file located in /plugins/content/plg_easyfolderlistingpro_files/css/styles.css
Just edit the elf_lists class properties. Just add:
<font class="Apple-style-span" face="'Trebuchet MS', 'Lucida Grande', Verdana, Tahoma, Arial">list-style-type: none !important;
<font class="Apple-style-span" face="'Trebuchet MS', 'Lucida Grande', Verdana, Tahoma, Arial">The crucial thing is to put !important at the end of the property, since this makes sure it overrides any styles specified anywhere else.
For example,
{
list-style-type: none !important;
font-size:small;
}