™️Logos

Digital Nomad supports Dark Mode, so you can add both a regular publication logo and a logo for a dark mode.


Logo/Author Tagline

Digital Nomad now allows you to add a custom tagline beneath the publication's logo or author's name in both the header and footer for enhanced branding and messaging clarity.

The screenshots below display the tagline "Marketing, Media, and Design" beneath the logo/author.

To add tagline:

  • Go to Settings > Code Injection from the admin menu

  • If you're looking to add a tagline beneath the author's name, simply insert the following code snippet into the Site header code injection area. Remember to replace INSERT YOUR TAGLINE HERE with your actual tagline.

<style>
  .site-author__name::after {
    content: 'INSERT YOUR TAGLINE HERE';
  }
</style>
  • If you're looking to add a tagline beneath the publication logo, simply insert the following code snippet into the Site header code injection area. Remember to replace INSERT YOUR TAGLINE HERE with your actual tagline.

<style>
  .logo::after {
    content: 'INSERT YOUR TAGLINE HERE';
  }
</style>
  • Click Save


  1. Go to Settings > Design & branding from the admin menu

  2. Click Brand in the Design settings sidebar on the right

  3. Click Upload logo button in the Publication logo menu item

  1. Go to Settings > Design & branding from the admin menu

  2. Click Site-wide in the Design settings sidebar on the right

  3. Click Upload image button in the Dark mode logo menu item

Last updated