Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Music Mastering

    (@music-mastering)

    My first question is a bit confusing.
    The tracks do appear with numbers on them, how can I remove these numbers?

    Thank you,

    Plugin Author cubecolour

    (@numeeja)

    The answer to the first question is that the track numbers are added by css. You should be able to remove them by adding the following to your child theme’s stylesheet or custom css plugin:

    .track:before {
    	content: '';
    }

    There is probably a way to programmatically set the volume using the setVolume() property of the mediaelement player but currently I don’t think there is a way to achieve this without diving into the code.

    You should however be able to hide the volume slider by also adding:

    .mejs-container .mejs-controls .mejs-button.mejs-volume-button,
    .mejs-container .mejs-controls .mejs-horizontal-volume-slider {
    	display: none;
    }

    Thread Starter Music Mastering

    (@music-mastering)

    Thank you for the quick answer. It’s working great thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Track numbers and volume slider’ is closed to new replies.