Editing Digest Theme

Hi there,

I’m currently using the Digest theme for my Ghost-hosted site, located here.

I want to make a few edits, via the CSS injection to remove the following:

The latest issue label (either remove this internally, or edit the text)
The date (from this and all subsequent posts)
The subscribe to box at the bottom of every page

Any help is greatly appreciated!

Hi @elliotmichaels,

You can add the following:

<style>.gh-article-meta, .gh-subscribe-wrapper { display: none; }</style>

This solved EVERYTHING. Thank you so much!

1 Like

One more question:

I’ve successfully managed to change the background colour of the nav bar and then the font for most of the bar to white, but can’t seem to change the font colour of the navigation bar and hamburger menu to white? Any idea what the correct CSS would be?

Hi, I releazie that this is an old post but I use the same theme and I also want to remove the “Subscribe” link in the navigation. How can I do that, please? Thank you.

image

You can add this in code injection:

<style>.gh-head-actions { display: none; }</style>
1 Like

Thanks @brightthemes

I tried to use your code injection snippet to get rid of these header links but they’re still appearing:

Can anyone point me in the right direction?

can you link your site, please?

@Cathy_Sarisky - it is: https://blog.getsoldlive.com/

The above code injection was meant to hide the subscribe button, not the whole menu.
You can hide the menu with this:

<style>.gh-head-menu { display: none; }</style>

@brightthemes - that worked, thank you so much!

I tried the same thing on the footer:

<style>.gh-footer-menu { display: none; }</style>

But it didn’t work to get rid of these links:

image

Could you point me in the right direction one more time?

The class for the footer is .gh-foot-menu.
You can use the Inspect Element function of the browser to find out the correct class.
Here’s a guide:
How to Inspect Element in Chrome | BrowserStack.

1 Like

Thank you @brightthemes!