Two quick questions on Headlines Theme

Hi.

1.) I’m hoping to change the font color of the site description in the header of the site.
2.) How to remove the giant subscribe text in the footer.

All help appreciated.

Keith.

Your easiest bet is with code injection:

<style>
/* Adjust the font color of the site description */
.gh-head-description {
  color: royalblue;
}

/* Remove the subscribe CTA in the footer */
.gh-subscribe {
  display: none;
}
</style>
1 Like

That’s Perfect! Thank you so much!

Not to overstay my welcome, but would you have any idea how I can move the byline of the articles up above the first paragraph on the home page to where it should be, under the headline. I’m not sure who thought the current position was correct.

if not, cool. Just thought I’d ask since I’ve got you.

Thanks again,

Keith.

Do you mean something like this?

if so:

<style>
.gh-article-sidebar {
  position: static;
  grid-column: main-start/main-end;
}
</style>

Thank you, but actually, no. I’m talking about on the home page, top spot. The default has the byline below the first paragraph, like this:
Screenshot 2022-05-01 11.45.18 PM
I’d like to move that above the paragraph and below the headline.

Aah wrong page :slight_smile:

Try this:

<style>
.gh-card-wrapper {
  display: grid;
  height: fit-content;
}

.gh-card-wrapper .gh-card-footer {
  grid-row: 2;
}
</style>

You are an absolute genius! Thanks so much, man. Really!

1 Like

No problem, happy to help! :slight_smile:

Just for my own edification, where do I find the style sheets this theme uses, so I don’t have to bug you in the future for whatever tinkering I want to do?

I don’t look at the stylesheets at all :see_no_evil:

I normally use chrome dev tools to locate the element (ctrl+shift+c will pull up an element picker that will get you in the general region), and then modify the styles until they do what I’m looking for.

1 Like