Information Field Hidden in Darkbox Skin

Question:

I have a question about the “Darkbox” skin. The “Information” field is hidden by the play, forward and rewind buttons (see the attached pic). How can that be solved?

Answer:

In step 2, Skins dialog, CSS tab, find the following CSS code:

#amazingaudioplayer-AUDIOPLAYERID .amazingaudioplayer-text {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 4px;
    height: 42px;
}

And you can change the height value to make it larger:

#amazingaudioplayer-AUDIOPLAYERID .amazingaudioplayer-text {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 4px;
    height: 60px;
}

HTML5 Audio Player for Joomla 3.2

Question:

I tried to add your amazing HTML5 audio player to my Joomla website exactly the way it is shown in your tutorial/documentation. But it does not work. It generates a blank white page as long as your module is active. I had to disable your module and after that my website run perfect again, but without your audio player of course.

Answer:

It looks like there is a jQuery conflict in your website.  You can try to use an iframe to embed the player to your website, it’s more easy compared to the module solution: https://amazingaudioplayer.com/how-to-insert-an-html5-audio-player-to-your-webpage-with-iframe/