driensche
Member
Posted 1 year ago #
This is probably something really dumb, as I can't seem to find anyone else with the same problem.
I have the Podpress audio player as the primary component of all my posts, and although I can customize all the colors in the "player settings" tab in my dashboard, I can't seem to get rid of the gray border around the entire player. Here's my site: http://www.notbadart.com/music/
Anyone know how I can remove this border? Thanks. :p
Dave
Hi Dave,
these gray borders are part of the CSS of your theme. Please, look into the style.css of your theme. There is probably an entry like this:
.entry object {
border: 3px solid #CFCFCF;
Maybe it exists also a definition for .entry embed { or it is a definition for both tags like .entry object, .entry embed {.
If you remove the border CSS or if you make a comment around it (/*border: 3px solid #CFCFCF;*/) then the gray border will vanish.
Regards,
Tim
driensche
Member
Posted 1 year ago #
Thank you! That's exactly what it was - .entry object. I changed the border to "0." Thanks so much!