Formatting blog title
-
hello,
I would like to change the formatting of my blog title. I had seen a previous post on this, which referenced using plain text in place of …. bloginfo(‘name’). I would like to get some clarification on this. So, here’s a snippet of code from header.php:
[please mark the code by wrapping it into backticks or by using the ‘code’ button, to keep it readable]
<div id=”header”>
<div id=”branding”>
<?php if (is_home()) { ?>
<h1 class=”homelink”>” title=”<?php bloginfo(‘name’); ?>”><?php bloginfo(‘name’); ?></h1>
<?php } else { ?>
<div class=”homelink”>” title=”<?php bloginfo(‘name’); ?>”><?php bloginfo(‘name’); ?></div>
<?php } ?>
<p class=”description”><?php bloginfo(‘description’); ?></p>
</div>Would I need to go through and just comment out the bloginfo(‘name’) throughout the div tags or header.php, or would I need to just comment out the entire div tag, replacing it with html?
Thanks,
Chris
- The topic ‘Formatting blog title’ is closed to new replies.