Go to header.php, line 70:
<img src="<?php echo of_get_option('logo'); ?>" alt="<?php bloginfo( 'name' ) ?>" />
Change in alt value <?php bloginfo( ‘name’ ) ?> with your text.
I did – it now looks like:
<img src=”<?php echo of_get_option(‘logo’); ?>” alt=”The Parent School, located in Chapel Hill, North Carolina provides parenting education, support, parenting books and coaching for families with infants, toddlers, school-age children and teens.” />
but does not show as the alt text.
Opss… I forgot title value, sorry!
Before the previous code (line 70) search:
<a rel="home" title="The Parent School" href="">
Change in title your text.
I am confused – I am using the “edit themes” in the dashboard – can’t find that line before the previous code. Also – Will this change what is displayed in the browser top too? I do not want that – still want “The Parent School” there.
The title attribute (causes pop-up upon hover) is not the same as title tags…kind of confusing for sure!
See these:
http://www.w3schools.com/tags/tag_title.asp
http://www.w3schools.com/tags/att_standard_title.asp
Ahh – thanks. So….do I add that line or should I be able to find it and replace?