Support Home Page › Forums › Joomla Software › Easy Folder Listing Pro Plugin › View of folderlisting › Re: View of folderlisting
February 11, 2011 at 1:23 pm
#962

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