Kamloops said:I need to ad and image to nameopoly.com. I want it to replace where it says Nameopoly at the top. This is the image.
![]()
How on earth do I do that. It is in wordpress and the theme is prosense
anyone?
<title>php if(is_home() || is_search()) { bloginfo('name'); echo ' - '; bloginfo('description'); } else { wp_title('') ;} ?></title>
<title><?php if(is_home() || is_search()) { bloginfo('name'); echo ' - '; bloginfo('description'); } else { wp_title('') ;} ?></title>
<div id="header_left">
<h1><a href="<?php bloginfo('url'); ?>/"><?php bloginfo('name'); ?></a></h1>
<div class="description"><?php bloginfo('description'); ?> </div>
</div>
<div id="header_left">
<h1><a href="<?php bloginfo('url'); ?>/"><img src="your logo url" border="0"></a></h1>
<div class="description"><?php bloginfo('description'); ?> </div>
</div>

