• My Home page is a post page and it has a read more link at the end of the content.

    I would like to be able to display all content in this post page and with the appropriate formatting I have applied. So take out the ‘read more’ link.

    Any suggestions? Also…

    I understand on my header the search box is part of the template and I cannot remove it, so I need to shrink the font size so all of my heading is viewable.

    Check out https://www.recordmyfamilyhistory.com if you need to understand what I am talking about.

    Appreciate any thoughts! Thanks!

Viewing 1 replies (of 1 total)
  • In your CSS file replace:

    #header h1 a {
    color:#FFFFFF;
    float:left;
    font-size:54px;
    font-weight:normal;
    left:54px;
    position:relative;
    text-decoration:none;
    top:35px;
    }

    with:

    #header h1 a {
    color:#FFFFFF;
    float:left;
    font-size:48px;
    font-weight:normal;
    left:54px;
    position:relative;
    text-decoration:none;
    top:35px;
    }

    That will shrink the header text. In your post just take out the

    <!--more-->

    part. That will fix your “Read More” problem.

    ~412mark412 8)

Viewing 1 replies (of 1 total)
  • The topic ‘Display all post content & change header font size’ is closed to new replies.