[Resolved] Post Title & Disable Author/Date Links

Home Forums Support [Resolved] Post Title & Disable Author/Date Links

Home Forums Support Post Title & Disable Author/Date Links

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #582897
    Tanner

    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.

    #582906
    David
    Staff
    Customer Support

    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;
    }
    #582913
    Tanner

    I see.

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

    #582916
    David
    Staff
    Customer Support

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

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

    Good to go! Many thanks.

    #582924
    David
    Staff
    Customer Support

    You’re welcome Tanner

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.