I went under Appearance>Editor, and clicked on the header.php file. I see the following code:
My browser spits out this code:
<div id="header">
<div id="logo"><h1><a href="http://www.sample.com/seesaw/">I love Macs</a></h1>
<div class="description">and writing from Macaddict23</div>
</div>
</div>
I want to edit the text in red. Thanks!
HTML:
<div id="header">
<div id="logo"><h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
<div class="description"><?php bloginfo('description'); ?></div>
</div>
My browser spits out this code:
<div id="header">
<div id="logo"><h1><a href="http://www.sample.com/seesaw/">I love Macs</a></h1>
<div class="description">and writing from Macaddict23</div>
</div>
</div>
I want to edit the text in red. Thanks!