Hi @jpite,
You can do it with custom styles. Try adding the following CSS rules:
.castos-player .playlist__item {
margin-top: 20px;
}
Thread Starter
jpite
(@jpite)
Thnx Serhly, but to no avail… did not make the change I’m looking for.
Thread Starter
jpite
(@jpite)
Any tweaks on this CSS so that it will work? Thnx!
Thread Starter
jpite
(@jpite)
Any thoughts on refining? It does not work…
.castos-player .playlist__item {
margin-top: 20px;
}
Thnx
Hi @jpite,
I checked your site and found that your rules are being overridden by the player’s CSS, which is why they aren’t working. You can make your rules more important by using a more specific selector:
.castos-player li.playlist__item {
margin-top: 20px;
}
Hope this helps,
Serhiy.
Thread Starter
jpite
(@jpite)
Many thanks – perfect, and appreciate your help! Feel free to close this thread.
JP
Great, I’m glad it worked for you!