Ability to add a title/text above player

See screenshot :slight_smile:

1 Like

Hi there and welcome to the Community, @Emma9 :waving_hand:

Nice idea, thanks for sharing! We’ll keep that in mind and see for more votes from the Community :slightly_smiling_face:

Thank you for waiting!

You can add a custom text using this code in the Custom CSS field on the Style tab of your widget’s settings :slightly_smiling_face:

.global-styles,
[class*="FloatingBackground__Container-sc"]
[class*="Background__Controls-sc"]:before {
  content: 'Sounds while browsing, somewhere in';
  color: white;
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  text-align: center;
}

.global-styles,
[class*="FloatingBackground__Container-sc"]
[class*="Background__Component-sc"] {
  position: relative;
  padding-top: 29px;
  height: 70px;
}
1 Like