Well, I'm in the process of learning CSS and until then I won't be able to sort this out. I'm using the F8 lite to build my girlfriends website (which is currently not live):
http://clairedunaway.fatcow.com/
I'm trying to insert her logo in the blog title...here is her logo:
http://clairedunaway.fatcow.com/wp-content/uploads/2011/01/2010-Logo.jpg
So, after I've done a bit of research here it seems like I need to edit the Header.php and look for the area called the masthead which I found:
[Code moderated as per the Forum Rules. Please use the pastebin]
I'm just not sure how to point to the logo I want to use in this code....anyone care to help me out? I'm sure it's simple...just need some guidance. Thanks!
Jay C.
Anyone? This is killing me..I've found some info on these forums but not sure if I need to edit the CSS or the HTML for the masthead?
I found this thread to be very helpful.
Basically, update the header template with a class for the logo and then add the class to the style sheet. The class will point to the logo image file.
This is what I'm working with...I followed your recommended link but still not to confident as to what lines to edit:
<!-- Begin Masthead -->
<div id="masthead" class="clearfix">
<h4 class="left"><a href="<?php echo get_option('home'); ?>/" title="Home"><?php bloginfo('name'); ?></a> <span class="description"><?php bloginfo('description'); ?></span><span class="contact"><?php if ( $options['phone'] != '' ) { ?><?php echo $options['phone']; ?><br /><?php } if ( $options['email'] != '' ) { ?><a href="mailto:<?php echo $options['email']; ?>"><?php echo $options['email']; ?></a><?php } ?></span></h4>
</div>