Using Facebook for your business
I agree with LI, go with Facebook Page don’t use your personal account to promote your business.
Once you get 25 “fans” so you can get your own URL ie www.facebook.com/buildyourwebsite rather than
http://www.facebook.com/pages/Build-Your-Website/149031868453993?ref=sgm which is what I have at the moment because I don’t have more than 25 fans yet!
Log into facebook and go to http://www.facebook.com/username/ to do this.
“Facebook is a personal medium that seeks to engage people as people, since people want to connect with people, not with brick-and-mortar. People don’t like to be “marketed to” in social media channels.”
If you have a blog, link to it, both with automation and with manual engagement. I use posterous.com. But I think it is also important to add personal content as well. I do find people engage more if I add a link and make a personal comment about it rather than just the automated link. Facebook is so much more personal than the rest of the web.
Website Developer Tools for Firefox
Firebug: I use this all the time
https://addons.mozilla.org/en-US/firefox/addon/1843/
This is a measuring tool.
https://addons.mozilla.org/en-US/firefox/addon/539/
This is a colour tool.
https://addons.mozilla.org/en-US/firefox/addon/271/
Great Solution for 2 or 3 Columns with a wordpress page or post
http://mattdanner.net/two-column-lists-using-html/
I know there are a million methods of breaking a list into two columns, but many of them involve additions to the CSS or new tables to be created. But I like a different way. The markup is all html, and it can easily be used in WordPress posts (using the view HTML tag at the top of the post editor). The markup is pretty simple. It is basically just two divs, one floated left and one floated right, with each only getting a percentage of the container. Below is the markup in real time.
<div style="float: left; width: 50%;">
<ul>
<li>Left Item 1</li>
<li>Left Item 2</li>
<li>Left Item 3</li>
<li>Left Item 4</li>
<li>Left Item 5</li>
</ul>
</div>
<div style="float: right; width: 50%;">
<ul>
<li>Right Item 1</li>
<li>Right Item 2</li>
<li>Right Item 3</li>
<li>Right Item 4</li>
<li>Right Item 5</li>
</ul>
</div>
If you want three columns set the width to 33% and float left left and right






