Struggling with a bit of html for wordpress

Status
Not open for further replies.

NJDevil

Banned
May 21, 2011
30
0
0
I'm trying to insert a logo into my website to replace the default wordpress text logo that appears.

website: MyClassroomIdeas.com | Creative Ideas For Your Classroom

this is the line of code for the title, however I cannot for the life of me manage to get my image to replace it.


" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?>


here is the url for the image:


http://myclassroomideas.com/wp-content/uploads/2012/06/Chalkboard2.png

any help is appreciated
 


Replace

Code:
<?php bloginfo( 'name' ); ?>

with

Code:
<img src="http://myclassroomideas.com/wp-content/uploads/2012/06/Chalkboard2.png" />

?
 
Status
Not open for further replies.