• My Homepage Settings is “our latest posts” and General Options->Page Title->Style is default.

    In my site the Page Title on Homepage shows as “Recent Posts”.

    My question is how to change the “Recent Posts” Page Title Heading to something other like “My custom title”

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello,

    ?Please try to add the below CSS code from the Appearance > Customize > Custom CSS, and check.

    .home.blog .page-header-title {
        font-size: 0;
    }
    .home.blog .page-header-title:before {
        content: "My Custom Title";
        font-size: 24px;
    }

    PS- Replace the My Custom title with your own.

    Thread Starter Atharvan

    (@atharvan)

    You are Great. Thanks.
    But not showing correctly in mobile if the title is long. Plz check the image.

    View post on imgur.com

    Glad to hear that previous solution worked well.

    Please the page URL where you facing the issue with long title.

    Thread Starter Atharvan

    (@atharvan)

    line-height solved the problem.

    .home.blog .page-header-title {
        font-size: 0;
    }
    .home.blog .page-header-title:before {
        content: "My Custom Title";
        font-size: 24px;
        line-height: 1.0;
    }

    Glad to hear that issue has been resolved.??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Alter Recent Posts Homepage Title Heading’ is closed to new replies.