Comments psyndrome started the conversationFebruary 23, 2020 at 6:17amHey there,I tried to center align the audio player via CSS:#sonaar-player {margin-left: auto !important;margin-right: auto !important; width: 1100px !important;}...but the player still stays on the left. How to fix this?Many thanks!psyndrome repliedFebruary 23, 2020 at 5:44pmGeneratePress guys had the solution:#sonaar-player { left: 50%; transform: translate3d(-50%, 94px, 0);} #sonaar-player.enable { max-width: 1100px; left: 50%; transform: translate3d(-50%, 0, 0);}(with !important that works fine!) :) Sign in to reply ...
Hey there,
I tried to center align the audio player via CSS:
#sonaar-player {
margin-left: auto !important;
margin-right: auto !important;
width: 1100px !important;
}
...but the player still stays on the left. How to fix this?
Many thanks!
GeneratePress guys had the solution:
#sonaar-player { left: 50%; transform: translate3d(-50%, 94px, 0);
}
#sonaar-player.enable { max-width: 1100px; left: 50%; transform: translate3d(-50%, 0, 0);
(with !important that works fine!) :)}