Site logo

Archived topic

Post Title & Disable Author/Date Links

5 replies · Started by Tanner on May 23, 2018

Viewing posts 1–6 of 6

Hi,

I'm looking to do 2 things:

1) How would I bold the font of my post titles? I know they react differently as clickable links on my homepage excerpts versus non-clickable titles for the single posts. I'm like the font to be bold in both instances.

2) How do I disable author and date meta links? I'd like them to just read as text under the post title.

Thanks!

~ Tanner G.

Hi Tanner, the Blog post articles use the H2 heading and the Single Post uses the H1 heading. Both can be changed in the Customiser > Typography > Headings. Where the font weight is provided.

To disable the meta links you can add this CSS:

.entry-meta {
    pointer-events: none;
}

I see.

With the meta, I'm only looking to disable the date and author, but not necessarily the categories. Any suggestions? Thanks!

Sorry yes, the code for just author and dates is:

.entry-meta .posted-on,
.entry-meta .byline {
    pointer-events: none;
}

Good to go! Many thanks.

You're welcome Tanner

This archived topic is closed to new replies.