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
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
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>';
?>This topic has been closed to new replies.