Dawn theme - To remove the homepage login button

Hi experts,

I am new to Ghost and need help to prep my blog closest to the vision. I need massive favors!

I am using Dawn theme. Looks easier to tweak.

This is screenshot from homepage. If someone could please help guide me to:

  1. Remove the login button (only from here)
  2. Change color of the Subscribe now button to match the background, please.
  3. Change the font of Subscribe now button and categories to Lato.

The 2 and 3 are purely cosmetic, sorry! :sweat_smile:

Thank you already for your time, help and kindness.

Update: Managed to get point 1. done! :sweat_smile:
Need help with 2. and 3. please.

Do you have a link to your site? I know the theme, but since you’ve already changed some stuff, it’s always easier to look at these implementations and take it from there, rather than starting from scratch :slight_smile:

Thank you Jannis :blush:

The site is hidden currently. Please have a look.
Sonya’s site under construction
Password is Hellohi@2023

Thank you!

You can simply add a code injection in your Ghost admin with the following CSS styles:

<style>
    .cover button.button.members-subscribe.gh-portal-close {
        background: transparent;
        font-family: 'Lato', sans-serif;
    }
</style>

For the categories you mentioned, can you clarify what specifically you mean?

Thank you, thank you, thank you!
It worked like magic. Thank you Jannis. :blush:

Am sorry about the ‘categories’ when there is no post. I posted one just now, if you please have a look. I meant the tag that says ‘Featured article’ by ‘categories’ sorry.

Thanks again.

No worries :slight_smile:

You can update the code snippet as follows:

<style>
    .cover button.button.members-subscribe.gh-portal-close {
        background: transparent;
        font-family: 'Lato', sans-serif;
    }

   h2.featured-title {
       font-family: 'Lato', sans-serif;
   }
</style>

Hope that solves it :slight_smile:

Worked again :sweat_smile:
Looks a whale lot better, made my day! :whale:

Thanks Jannis, best wishes always.

1 Like