Re: View of folderlisting

Home \ forums/reply \ Re: View of folderlisting
#962
Michael Gilkes
Keymaster

Hi wknuvers,

I had a look at your page. It behaves like it should, except or the indentation. Apparently, the template.css (on line 33) removes the padding for UL tags. This removes the indentation that you normally get to distinguish subolders. You can easily remedy this by editing the styles.css file that is located in plugins -> content -> plg_easyfolderlistingpro_files -> css. Just add the following:

Code:
.eflpro_lists ul
{
    padding-left: 40px !important;
}

The !important isn't really necesary, but it ensures that you will override any attempt to alter the padding-left value for ul tags inside of elfpro_lists by any other css script.

Hope this helps