Re: Font

Home \ forums/reply \ Re: Font
#941
Michael Gilkes
Keymaster

Hi,

Thanks for using my plugin, and thanks for posting your question.

It's pretty easy to change the font properties of the plugin. All you have to do is edit the CSS file located in /plugins/content/plg_easyfolderlistingpro_files/css/styles.css

Just edit the elfpro_tables and/or elf_lists class properties.  Just add:

font-size: <value>;

According to: http://www.w3.org/TR/CSS2/fonts.html#propdef-font-size

For example,

Code:
.eflpro_empty
{
    font-style: italic;
    font-size: medium;
}

.elfpro_tables
{
    width: 100%;
    border-collapse: separate;
    border-spacing: 1px;
    text-align: left;
    font-size: large;
}

.eflpro_lists
{
    /*list-style-type: circle !important; */
    font-size:small;
}