Viewing 5 replies - 1 through 5 (of 5 total)
  • Don’t know what theme you are using, will be different from theme to theme.

    Generally, edit home.php, or create it if not exist. Put the title code where you want it to appear, will affect the home page only.

    Open single.php to edit where the title appears on post pages. You can add a css class and style as needed.

    <h1 class="entry-title"><?php the_title(); ?></h1>

    How can I change the Entry Title font and font size on Clean Home?

    I have altered the CSS to change the rest of the fonts for the entirety of the site and for some reason the post title is not changing (I would like all of the font on my blog to be Courier New)

    My site is https://dequelleplaneteestu.com

    I have the editable CSS option for the Clean Home theme.

    Thanks!

    Your site is hosted on WP.COM — which is not the same as WP.ORG See this https://en.support.wordpress.com/com-vs-org/.

    So you need to post your questions on the WP.COM site.

    Edit your css silly:

    .hentry h1, .hentry h1 a, div.attachment h1, div.attachment h1 a {
    font-family: Georgia, serif;
    font-size: 28px;
    margin: 30px 0 10px 0;
    font-weight: normal;
    line-height: 32px;
    color: #333; /* very dark gray */
    }

    THANK YOU SO MUCH. Worked like a charm! And next time I’ll do the .com biz.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘CSS/PHP Help! Easy Clean-Home Theme Question’ is closed to new replies.