Hi.
I’m using Ghost(Pro) and for some reason, and only on desktop browsers, mobiles are ok, controls on the audio card are not visible:
Is there any way that I can fix this myself?
Cheers.
Hi.
I’m using Ghost(Pro) and for some reason, and only on desktop browsers, mobiles are ok, controls on the audio card are not visible:
Is there any way that I can fix this myself?
Cheers.
They are invisible because you set the CSS variable --light-dark: #fff
, making them white, and blending with the white background, so you can’t see them.
Try to put the following code into Code injection > site header:
<style>
[data-theme=dark] {
--light-dark: #555555 !important;
}
</style>
Thank you so much Raki for this, you solved my problem
I didn’t set the CSS variable --light-dark: #fff
but I’ve read that Ghost changed the styling of some of the cards recently.
Once again, thank you for your time and effort.
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.