Apr 5, 2011

Post HTML code in Blogger post


So you've entered in your HTML code to display on a blog post, but Blogger ends up interpreting the HTML code, so your post ends up looking funky. No problem. 

Solution: 


It had been awhile since I had to insert some code into a post, and I did not realize Blogger changed the posting options? Either way, the new posting features look pretty cool. 

Apr 3, 2011

Add a Logo to your Header Text :: CSS :: Wordpress

Edit your header.php with the following:

<div id="header">
 <div id="samplelogo"><a href="<?php echo get_option('home'); ?>/"><img src="http://www.linktoyour/logo.png" alt="" width="60" height="60" />
 </div>
  
 <p id="logo"><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></p>
 <p id="strapline"><?php bloginfo('description'); ?></p>
   
</div>

Then edit your style.css
#samplelogo {
 float: left;
 padding-right: 10px;
}