• Resolved Charla

    (@webgirl)


    Is there a way to change the color of the player instead of having pink/fuchsia looking buttons?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Fotis

    (@markwaregr)

    Hi there,

    You will need to add some custom CSS to achieve this.
    Install and activate this plugin then go to “Add Custom CSS” on your dashboard and paste this

    /*Volumn control hover and focus buttons */
    .ai-wrap .ai-btn:hover svg,
    .ai-wrap .ai-btn:focus svg {
        color: red;
    }
    /*Main play button */
    .ai-wrap .ai-audio-control {
        background: blue;
    }
    /*Main play hover and focus */
    .ai-wrap .ai-audio-control:hover,
    .ai-wrap .ai-audio-control:focus {
        background: green;
    }
    /* Volume bars */
    .ai-wrap .ai-volume-bar.ai-volume-bar-active::before {
        background: cyan;
    }
    /* Music progress */
    .ai-wrap .ai-track-progress {
        background: magenta;
    }

    in the box.

    Replace each color with your preference.
    Let me know if this helps

    Thread Starter Charla

    (@webgirl)

    Thanks so much Fotis.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Player Color’ is closed to new replies.