Plugin Author
X-Raym
(@x-raym)
That’s a premiere,
Try deactivating all CSS to see if it is a CSS issue.
Hi – Love the player to bits, but am having the same issue as above, see:
http://i63.tinypic.com/1zokj1x.jpg
Getting a floating soundwave above the actual player, and the progress colour isn’t showing behind the progress bar.
Would buy someone a coffee if anyone could help resolve this issue…
Thanks,
Sam
PS – I’m using Firefox, and just tested it in IE and the same thing happened, only the main player soundwave isn’t display in addition to the float issue.
PPS – Please couch any answers in terms a code ignoramus could understand 😉 Thanks again.
Plugin Author
X-Raym
(@x-raym)
@hawthonn
Try with a different theme, like the flat buttons with icons only
If it still doesn’t work, please show us your webpage so that we can investigate.
Does the same with flat buttons, you can see a live example of the issue on my site here:
Thanks a million by the way – this player looks so much better than all the others that I tried I’d be so happy if I could get it running flawlessly.
Best,
Sam
Not sure if that link posted properly, the url is:
http://theopod.com
Plugin Author
X-Raym
(@x-raym)
So, line 67 of your styles.css
audio,
canvas,
video {
display: inline-block;
max-width: 100%;
}
This cause problem.
Add this at the end.
canvas {
max-width: none;
}
I may include this rule in the next release.
You should also consider having very different color for the two waveforms, it will make debugging far more easier, and will me more ergonomical for your users.
(unrelated: also, consider using a child theme if you don’t use one).
I don’t drink coffee but donations are very welcome. 😛
Cheers !
That’s absolutely perfect. Thank you my friend! You have made another human being very happy :)))
A little thank you donation will be winging its way over to you.
Keep up the fantastic work!
Sincerely,
Sam
PS – I will have to research child themes, but until I figure them out I’m keeping a record of all code tweaks, so I can reproduce them after any updates occur. Thanks again.
Plugin Author
X-Raym
(@x-raym)
You are welcome 🙂
About child themes, consider thesereadings:
How to Create a WordPress Child Theme – WPMU DEV
Good luck in your project !