A free Carrd plugin template to showcase a gallery grid of audio files/music. Great for voice artistes, musicians, bands.
Tutorial here →
Made by @jasonleowsg.
How to Customize Your Audio GalleryThis is a quick guide for anyone who wants to change the card color, play button color, and audio track in plain HTML/CSS.---1️⃣ Find the code here:
Open the Embed element "Audio gallery plugin" and find this section in your code:---2️⃣ Change the card background colorYou can use color names, HEX, RGB, or gradient values.
<style>
.audio-card {
background: white; /* card background color */
}
.play-btn {
background-color: #007bff; /* play button circle color */
}
.play-btn.paused {
background-color: #ff3b3b; /* pause button color */
}
</style>
💡 Example: Try
.audio-card {
background: #fef9e7; /* soft yellow */
}
#222 for dark mode or #e3f2fd for a light blue tone.---3️⃣ Adjust the play button circle colorChange this line inside .play-btn to your preferred color:💡 Tip: Keep contrast high so the white ▶ icon stays visible.---4️⃣ Switch the music track (MP3 URL)Scroll down to the
.play-btn {
background-color: #28a745; /* green play button */
}
<audio> section inside each .audio-card.
Replace the old link with your new track URL inside the src="" quotes.👉 Example:
<audio src="https://www.openmusicarchive.org/audio/April_Kisses.mp3"></audio>
htmlMake sure the new link is direct to an MP3 file (ends with
<audio src="https://example.com/music/mysong.mp3"></audio>
.mp3) and is publicly accessible.---Now just save your changes and refresh the page — your new colors and audio track should appear immediately! 🎨🎶