Blogspot

Your Google blog is Blogspot, also known as Blogger.  Each Google account allots 100 free Blogspot blogs for you to promote your offers and knowledge.  There are several benefits to using free Blogspot websites.  You should still have at least one domain of your own, but if you cannot purchase one at this time, eventually you will want your main website to be using your own domain name.



The video showed how to do a redirect to your website or somewhere else when placing more than the norm Craigslist ads.  Here is a redirect script listed below.


<meta
 content="text/html; charset=windows-1252"
 http-equiv="content-type">
  <meta http-equiv="refresh"
 content="5; URL=http://www.YOURWEBSITEHERE.COM">








The above video shows some great tips for starting your blog set up.  Set up your comments, email notifications and more using the tips in this video.







This removes the commercial links at the bottom of your blog.  It makes your blog look more appealing near the footer.








Coding For Drop Down Menu

 Under Content, paste the following code


  <div id='menubar'>
    <ul id='menus'>
      <li>
        <a href='#'>MenuItem</a>
      </li>
      <li>
        <a href='#'>MenuItem</a>
      </li>
      <li>
        <a href='#'>MenuItem</a>
      </li>
      <li>
        <a href='#'>MenuItem</a>
        <ul>
          <li><a href='#'>SubMenuItem</a></li>
          <li><a href='#'>SubMenuItem</a></li>
          <li><a href='#'>SubMenuItem</a></li>
        </ul>
      </li>
    </ul>
  </div>

  • Replace MenuItem with the appropriate menu label
  • Replace SubMenuItem with the appropriate sub menu label
  • Replace # with the appropriate URL
  • Click Save
  • Move the HTML/Javascript object to where you want the menu to appear
  • Click Save arrangement