Comments on f2u . guilt by association All Comments Start of Thread Parent

the solution should be the same, the reason "bg-faded" doesn't show up is that you're using the custom color version; "bg-faded" is the class that makes the color match the theme. yours should look something like this right now <div class="card my-2 rounded-0" style="padding:1px;border:1px solid #5efffc;background: #ff3bef;"><br></div> (possibly with more or less spaces? the pastebin you sent me is all squished together, idk why that is exactly but it tends to happen if you turn off wysiwyg and paste a code in without reloading the page first? not super important but it can be harder to see where to edit when it's squished)

but yea, you just add height:4px; to the style of those! it should look something like this after <div class="card my-2 rounded-0" style="height:4px;padding:1px;border:1px solid #5efffc;background: #ff3bef;"><br></div>

as for the playlist, https://pastebin.com/LzHiSKRN this should fix everything! just copy and paste that in over where it is in the old code, starting at "<!-- MUSIC PLAYER -->" and ending at " <!-- copy & paste song 2 here for more songs -->"

an extra span got in there somehow? "<span class="fr-video fr-fvc fr-dvi fr-draggable" contenteditable="false">", which looks to be why the songs weren't playing. and the play and next buttons got moved out of the span they were meant to be, which would be why the format of the first song messed up.

(also part of it miiight have something to do with the second video you used not allowing embeds? when i opened the link you had there (https://www.youtube.com/embed/WHcFDJCjY3s) and tried to play the video i got a video unavailable message. to remedy that i just replaced it with a different video for the same song (https://www.youtube.com/embed/yHgIYfNF8kY), which doesn't seem to be any different aside from excluding a few seconds of silence at the end)

and dw about bothering me, its no problem !! hope this helped, lmk if you have any more trouble!! :3

that fixed everything, thank you so much!! you're very kind ^__^