• Resolved Progress Concepts

    (@progressconcepts)


    I want to increase the size of the text in the header (logo area). I realise the Title and the Second line are h1 and h2 respectively, but they do not conform to the H1 and H2 sizes.

    I may be missing something simple, but wondered how to tweak this so I can set my own size.

    Also, I would like to remove the hyplerlink from the Tile / sub title.

    Can you advise?

    Cheers.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Fruitful Code

    (@fruitfulcode)

    Progress Concepts,

    Logo and site description have limited size in theme,

    You can make changes in style.css line 1352

    .logo-description h1.site-title {
    font-size: 25px;
    }
    .logo-description h2.site-description {
    font-size: 20px;
    }

    If you need remove link from logo edit functions.php on line 412

    echo '<a class="logo-description" href="' . esc_url( home_url( '/' ) ) . '" title="' . $description .'" rel="home"><h1 class="site-title">'. $name .'</h1><h2 class="site-description">'. $description .'</h2></a>';

    Replace to

    echo '<h1 class="site-title">'. $name .'</h1><h2 class="site-description">'. $description .'</h2>';

    Thread Starter Progress Concepts

    (@progressconcepts)

    Hi. Thanks for this. Appreciate you taking the time to details the changes.

    I have had a thought that I may do a logo with what I want for the header. I wasn’t intending on doing before, but on reflection it may be a good idea.

    Thank you again, and thanks for such a great theme. Keep up the good work.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Increase font size of title (in place of logo)’ is closed to new replies.