sverhagen / mp3-browser

This Joomla plugin will create a table of every MP3 in a specified folder. It displays the ID3 information of each track with a link to download or play the file in the browser
https://www.totaalsoftware.com/products/mp3-browser
GNU General Public License v2.0
5 stars 5 forks source link

Hide "Name" and "Play" header #59

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 9 years ago
Hello, how can I hide the header with "Name" and "Play"? Thanks!

Original issue reported on code.google.com by berom...@gmail.com on 23 Apr 2015 at 9:44

GoogleCodeExporter commented 9 years ago
Sorry this is not a defect! 

Original comment by berom...@gmail.com on 23 Apr 2015 at 9:45

sverhagen commented 8 years ago

A cheap solution may be with CSS:

.mp3browser th:nth-child(2),
.mp3browser th:nth-child(3) {
    color: #d0d0d0;
}

Another solution may be changing PHP: find HtmlNameColumn and HtmlPlayerColumn respectively, and change the method getHeaderText to return an empty string or " ".