I tried setting the width of the player to 100% today, and it kept getting saved as 100. Upon further investigation, the table field itself is of type integer, so MySQL is typecasting the %-based width as a pixel-based width, and in my case saving it as 100.
Comments
Comment #1
haysuess commentedI was wondering about this too because I wanted different sized players in different areas of the website, so the plan was to make the player 100% width and manually size their containers.
To change the column type, visit your database in PHPMyAdmin and use the follow:
This changes the column type to tinytext and allows you to put in 100%. I changed it to 100% in PHPMyAdmin but I assume it would work in the Mp3Player settings as well.