Audio Player for Right to Left Language (Arabic)

Hi, We would like to upload Arabic audio tracks with the player enabled for Right to Left. Can we have an option to choose the RTL. Thanks

1 Like

Hi @user1145 and welcome to Community :wave:

Please add this code to the Custom CSS field on the Style tab and let me know if it helped:

  .global-style, [class*="Playlist__Component"]{ 
  direction: rtl;
}
1 Like

Thanks, it worked like a charm ! Can we switch off the download track with this global style ! TIA

1 Like

Great to hear the solution worked! :heart_eyes:

I’m afraid I didn’t quite get your idea about downloading tracks — do you need to switch all of them using CSS, or did you have something else in mind?

Hi, want to switch off all of them. Thanks :blush:

Hi @user1145,

If I understood your request correctly, you’d like to hide download buttons from all the tracks so you don’t have to remove them one by one in the settings. In that case you can try the following CSS code:

.global-styles, [class*="Button__StyledButton"][download] {
  display: none;
}

Let me know if that works!

1 Like