Support Home Page › Forums › Joomla Software › Easy Folder Listing Pro Plugin › Upgraded to 2.7 Custom Column title not working › Re: Upgraded to 2.7 Custom Column title not working
February 4, 2013 at 1:38 pm
#1703

Keymaster
@Chatanooga. Good Question. You should be able to do it with CSS. Go to the styles.css file and change the following:
1 2 3 4 5 6 7 8 |
.eflpro_tables th<br /> {<br /> padding: 4px;<br /> border-color: #FFFFFF !important;<br /> border-style: solid !important;<br /> border-width: 1px !important;<br /> }<br /> |
to the following:
1 2 3 4 5 6 7 8 9 |
.eflpro_tables th<br /> {<br /> display: none;<br /> padding: 4px;<br /> border-color: #FFFFFF !important;<br /> border-style: solid !important;<br /> border-width: 1px !important;<br /> }<br /> |
I haven’t tested this, but it should work.