• Resolved LAmarky

    (@lamarky)


    Hi – Love the Plug-in, except my client hates the white background. The site I was working on has black background and the white player is very jarring.

    Is there a way to customize that area and change the color of the theme?

    https://ww.wp.xz.cn/plugins/cue/

Viewing 1 replies (of 1 total)
  • Plugin Author Brady Vercher

    (@bradyvercher)

    Hi LAmarky,

    You can customize the player colors using a little CSS. If you’re not using a custom theme or child theme, I’d recommend the Simple Custom CSS plugin or the Custom CSS module in Jetpack.

    Here’s a snippet with a few colors you can customize:

    body .cue-tracks {
    	background-color: #222;
    }
    
    body .cue-tracks,
    body .cue-track {
    	border-color: #333;
    }
    
    body .cue-track {
    	color: #bbb;
    }
    
    body .cue-track .cue-track-details .cue-track-title {
    	color: #fff;
    }
    
    body .cue-track.is-current,
    body .cue-track:hover {
    	background-color: #454545;
    }

    Cheers,
    Brady

Viewing 1 replies (of 1 total)

The topic ‘Optional colors available?’ is closed to new replies.