Support » Theme: Rams » Could you add subtitle under the header?

  • Dear Anders,

    Could you add a subtitle to the theme? Like your other theme Wilson has? It would be great if I am able to tell my visitors in a sec what’s my blog is about,

    Try to work it out in the code but it didn’t become realy pretty… My CSS knowledge is minimal.

    Thanks!

    Victor

Viewing 1 replies (of 1 total)
  • Hello Victor,
    You have to do it through the header.php file. Where it says:

    <h1 class="blog-title">
      <a href="<?php echo esc_url( home_url() ); ?>" title="<?php echo esc_attr( get_bloginfo( 'title' ) ); ?> &mdash; <?php echo esc_attr( get_bloginfo( 'description' ) ); ?>" rel="home"><?php echo esc_attr( get_bloginfo( 'title' ) ); ?></a>
    </h1>

    You can add another line of code, directly underneath this calling the subtitle…

    <h1 class="blog-title">
      <?php echo esc_attr( get_bloginfo( 'description' ) ); ?>
    </h1>

    In this case, I have left it in the same styling as the Blog Title, but you can change it to another size (h2, h3, p etc.) and edit the css file to suit your taste!

Viewing 1 replies (of 1 total)
  • The topic ‘Could you add subtitle under the header?’ is closed to new replies.