• Might I ask a question? In Settings – General – Blog Title and Taglines, is there anyway I can increase the size of the Blog Title and the Tagline or can this be controlled within my css?

    Many thanks for any advice offered re this topic

    Kevin

Viewing 4 replies - 1 through 4 (of 4 total)
  • It’s done through modifying your CSS.

    Does anyone know if you can make a hyperlink out of your blog title on your page. I would like when they scroll over the name on the top of the page to have a link to my website. Any help

    Try this:
    <a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a>

    Try something like this:

    <?php
    echo '<a href="/" title="' . get_bloginfo('name') . '">';
       get_bloginfo('name');
    echo '</a>';
    ?>
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Blog Title and Tagline’ is closed to new replies.