[Support request] How to Remove the Bold tag from Headlines

Home Forums Support [Support request] How to Remove the Bold tag from Headlines

Home Forums Support How to Remove the Bold tag from Headlines

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1151805
    Amit

    My headings H3 and H4 are added with bold tags on home page which is letting away the actual appearance. These headings use our plugin wp show posts. Can you please help on this.

    #1152218
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    That’s being caused by this CSS you’re using:

    body:not(.blog):not(.archive) .inside-article a {
        font-weight: 700;
    }

    If you need that CSS, you could try this:

    body .inside-article h1 a,
    body .inside-article h2 a,
    body .inside-article h3 a,
    body .inside-article h4 a {
        font-weight: normal;
    }
    #1153577
    Amit

    Hi Tom,
    I am just simply interested in making the links in paragraphs on single posts and pages to be underlined, bold and black on hover. I don’t want anything to implement on headings and other pages like home and archives. The home page uses the posts from your plugin wp show posts.

    #1153979
    David
    Staff
    Customer Support

    Hi there,

    replace this CSS:

    body:not(.blog):not(.archive) .inside-article a {
        font-weight: 700;
    }

    with:

    .single-post .inside-article a {
        font-weight: 700;
    }
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.