yescomment / bh-flaminghydra-ghosttheme

A minimal newsletter theme for FLAMING HYDRA DOT COM
https://dawn.ghost.io/
MIT License
1 stars 0 forks source link

Podcast (Fireside): hide headshots #79

Closed unitof closed 2 months ago

unitof commented 3 months ago

❝nobody wants headshots Jacob!!❞ —Maria

(honestly, I don't either)

Screenshot 2024-04-10 at 1 03 21 PM Screenshot 2024-04-10 at 1 02 58 PM

unitof commented 3 months ago

Done with just the absolute wackiest injected <style>.

<style>
  .episode-hosts img {
    display: none; /* hide headshots */
  }
  .episode-hosts a,
  .episode-hosts a::after {
    content: attr(title); /* shows name; super hacky */
    font-weight: bold;
    color: #ff0be1; /* FH PINK */
  }
</style>
unitof commented 3 months ago
22163
unitof commented 3 months ago
99496
unitof commented 2 months ago

One more 2550

unitof commented 2 months ago
<style>
  .episode-hosts img,
  .hero-avatar img {
    display: none; /* hide headshots */
  }
  .episode-hosts a,
  .episode-hosts a::after {
    content: attr(title); /* shows name; super hacky */
    font-weight: bold;
    color: #ff0be1; /* FH PINK */
  }
</style>