Font

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #43
    d2drummer
    Participant

    How would I go about changing the font size for the EF Lising Plugin?   The current font size is pretty small.  Would be great if you could set this as a parameter in the plugin.

    Thanks

    #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;
    }

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Font’ is closed to new replies.