Change positioning on podcast players

Is there a way to put the player on my website I don’t like the position that Elfsight puts down I want to move the player anywhere on my page can this be done??

2 Likes

Hi there, @Magic_Media_Producti and welcome aboard :waving_hand:

Coul you please send me a link to the page, where your widget is installed?

player in wrong place

i want to be able to put the player wherever i want???

1 Like

As far as I got, you’re using the Podcast Player widget with the floating layout. If so, you can adjust its position on the Layout tab:

Do the available position options work for you?

i know how to do that already i want to move freely in my website i know how to do that i know how to do that already- I WANT TO PLACE IT WHERE I WANT TO PLACE IT,

1 Like

Do you mean to let website visitors drag and drop the widget to any place on the website? If so, unfortunately, this functionality isn’t supported at the moment.

If I misunderstood your idea, please describe your use case in more detail :slightly_smiling_face:

NO ME-i want to have control to move any where on my site as i stated in my message -I WANT TO PLACE IT WHERE I WANT TO PLACE IT

1 Like

Got it, you’re looking for a more flexible way to change the widget’s position (beyond the available position options).

Unfortunately, it’s impossible to do this via settings, but our devs will provide a custom code for you. I’ll update you once it’s done :slightly_smiling_face:

1 Like

Hey there, @Magic_Media_Producti :waving_hand:

Thank you for waiting!

This code (should be added to the Custom CSS field on the Style tab of your widget’s settings) will do the trick:

@external {
  [class*="FloatingSmall__Container-sc"] {
    left: revert;
    bottom: revert;
    right: revert;
    top: revert;
  }

  [class*="FloatingSmall__Container-sc"] {
    left: 150px;
    top: 250px;
  }
}

Feel free to adjust left and top values to your liking. You can also use bottom and right values instead based on your specific case:


Test it out and let me know if it helped :slightly_smiling_face: