<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>simonshullfoust.com</title>
	<atom:link href="http://www.simonshullfoust.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.simonshullfoust.com</link>
	<description>This is a blog about xhtml/css, content management systems, and other geeky stuff.</description>
	<pubDate>Fri, 01 Aug 2008 05:56:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Conversion Tracking with Google and GoodBarry</title>
		<link>http://www.simonshullfoust.com/conversion-tracking-with-google-and-goodbarry/</link>
		<comments>http://www.simonshullfoust.com/conversion-tracking-with-google-and-goodbarry/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 22:02:47 +0000</pubDate>
		<dc:creator>Simon Shull Foust</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[goodbarry]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[sem]]></category>

		<guid isPermaLink="false">http://www.simonshullfoust.com/?p=34</guid>
		<description><![CDATA[If you have an online business that relies on paid placement for a good portion of your meaningful traffic, then Google&#8217;s conversion tracking is extremely important.
The concept is simple. You run Google AdWords campaigns to drive targeted traffic to your site, and you have conversion tracking code on certain pages so you can track your [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sfcreativegroup.com/services/goodbarry"><img class="alignright" src="/images/goodbarry.gif" alt="Goodbarry - Free 30-day trial." /></a>If you have an online business that relies on paid placement for a good portion of your meaningful traffic, then Google&#8217;s conversion tracking is extremely important.</p>
<p>The concept is simple. You run Google AdWords campaigns to drive targeted traffic to your site, and you have conversion tracking code on certain pages so you can track your success. One common method is to place the conversion tracking code on a &#8216;Thank You&#8217; page, which is a page visitors are taken to after filling out a form of some kind - whether a simple contact form, or subscription or quote request. This way, you know which visitors found your site through a paid advertisement on Google and then made their way to a form which they then filled out.</p>
<p>With GoodBarry, placing this tracking code on the correct page is easier than you think. Simply go to &#8220;Admin &gt; Customize System Messages&#8221; and then click on the &#8220;Web Forms Confirmation Page&#8221; to edit that page. From there, use the HTML view on the editor to paste in your tracking code, and you&#8217;re ready to go!</p>
<p>Additionally, if you&#8217;d like for different forms on your site to have different confirmation pages (perhaps so you can have different types of conversions to track) you can edit the form action and create new confirmation pages as well. Simply follow the directions found in the <a href="http://onlinebusinesswiki.com/index.php?title=How_do_I_redirect_customer_to_a_particular_page_after_form_submission" target="_blank">online business wiki here</a>, and then create the new confirmation pages with the appropriate tracking code for each.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonshullfoust.com/conversion-tracking-with-google-and-goodbarry/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Title Tags and Body IDs with GoodBarry</title>
		<link>http://www.simonshullfoust.com/title-tags-and-body-ids-with-goodbarry/</link>
		<comments>http://www.simonshullfoust.com/title-tags-and-body-ids-with-goodbarry/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 19:15:30 +0000</pubDate>
		<dc:creator>Simon Shull Foust</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[goodbarry]]></category>

		<guid isPermaLink="false">http://www.simonshullfoust.com/?p=29</guid>
		<description><![CDATA[While integrating sites with GoodBarry I&#8217;ve noticed that you can edit both the Title Tag for a given page (as well as the Body ID) right from the content editor. This is a very helpful tip, because the default title tag is often insufficient as a description of a given page.
If you have a page [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sfcreativegroup.com/services/goodbarry"><img class="alignright" src="/images/goodbarry.gif" alt="Goodbarry - Free 30-day trial." /></a>While integrating sites with GoodBarry I&#8217;ve noticed that you can edit both the Title Tag for a given page (as well as the Body ID) right from the content editor. This is a very helpful tip, because the default title tag is often insufficient as a description of a given page.</p>
<p>If you have a page called, &#8220;Home&#8221; then that&#8217;s what the Title Tag is going to say unless you do the following. Go to your administrative area and go to the web page you want to edit. Then click over to the html view in the content editor and make sure you have the proper tags there. You should have &lt;html&gt;, &lt;head&gt;, &lt;title&gt;, &lt;body&gt;, and their end tags in addition to the content of the page. For instance:</p>
<pre>&lt;html&gt;
  &lt;head&gt;
    &lt;title&gt;Home&lt;/title&gt;
  &lt;/head&gt;
  &lt;body&gt;
    &lt;p&gt;
      This is an example of content.
    &lt;/p&gt;
  &lt;/body&gt;
&lt;/html&gt;</pre>
<p>What you want to do is edit the Title Tag to be more descriptive. Maybe something like &lt;title&gt;Homepage of Simon Shull Foust&lt;/title&gt;. And also, feel free to add an ID on the Body tag so you can reference this particular page in your StyleSheet. This is often used to apply special styles to the navigation of a website - a sort of &#8220;selected&#8221; state.</p>
<p>So if you wanted for the link in the main navigation of your site to be gray when you&#8217;re on a given page, you can add your ID to the body tag like this: &lt;body id=&#8221;home&#8221;&gt; and then in your StyleSheet make a reference like this: #home #nav li.home a { color: #777; }.</p>
<p>So, in a sense, the Title Tag and Body ID specified for each of your content pages overwrite your Site-Wide Template, which most like just has a body tag with no ID. This is a very helpful practice to give you more control over individual pages.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonshullfoust.com/title-tags-and-body-ids-with-goodbarry/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Just Completely For Fun</title>
		<link>http://www.simonshullfoust.com/just-completely-for-fun/</link>
		<comments>http://www.simonshullfoust.com/just-completely-for-fun/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 23:06:28 +0000</pubDate>
		<dc:creator>Simon Shull Foust</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.simonshullfoust.com/?p=23</guid>
		<description><![CDATA[
Ok so listen, this one is just completely for fun. Titled, &#8220;Grandpas Wake&#8221; or alternately - &#8220;He would have wanted it this way.&#8221; This song has been stuck in my head all day since seeing this.
]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 300px; height: 225px; margin: 0 0 15px 35px;"><object type="application/x-shockwave-flash" data="http://www.collegehumor.com/moogaloop/moogaloop.swf?clip_id=1821660&#038;fullscreen=1" width="300" height="225"><param name="allowfullscreen" value="true" /><param name="movie" quality="best" value="http://www.collegehumor.com/moogaloop/moogaloop.swf?clip_id=1821660&#038;fullscreen=1" /></object></div>
<p>Ok so listen, this one is just completely for fun. Titled, &#8220;Grandpas Wake&#8221; or alternately - &#8220;He would have wanted it this way.&#8221; This song has been stuck in my head all day since seeing this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonshullfoust.com/just-completely-for-fun/feed/</wfw:commentRss>
		</item>
		<item>
		<title>GoodBarry and XML Sitemap</title>
		<link>http://www.simonshullfoust.com/goodbarry-and-xml-sitemap/</link>
		<comments>http://www.simonshullfoust.com/goodbarry-and-xml-sitemap/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 05:46:24 +0000</pubDate>
		<dc:creator>Simon Shull Foust</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[goodbarry]]></category>

		<guid isPermaLink="false">http://www.simonshullfoust.com/?p=4</guid>
		<description><![CDATA[After integrating your site with GoodBarry and filling all your main pages with content you will want to activate your sitemap.xml for better search engine indexing. (To do this go here: &#8220;Admin&#8221; -&#62; &#8220;Google/Yahoo/Live Optimisation&#8221;). However, you also want to make sure there are no pages in your sitemap that shouldn&#8217;t be there.
For instance, when [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sfcreativegroup.com/services/goodbarry"><img class="alignright" src="/images/goodbarry.gif" alt="Goodbarry - Free 30-day trial." /></a>After integrating your site with GoodBarry and filling all your main pages with content you will want to activate your sitemap.xml for better search engine indexing. (To do this go here: &#8220;Admin&#8221; -&gt; &#8220;Google/Yahoo/Live Optimisation&#8221;). However, you also want to make sure there are no pages in your sitemap that shouldn&#8217;t be there.</p>
<p>For instance, when you <a href="http://www.sfcreativegroup.com/services/goodbarry">sign up for your free 30-day trial</a> some example pages are created so you can see how they work. You&#8217;ll want to edit or delete those before submitting your sitemap.xml to <a href="https://www.google.com/webmasters/tools/dashboard">Google Webmaster Tools</a>. Your sitemap.xml will auto-update every 24-hours, and periodically auto-submit to various search engines.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonshullfoust.com/goodbarry-and-xml-sitemap/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Getting Started with GoodBarry: Integration</title>
		<link>http://www.simonshullfoust.com/getting-started-with-goodbarry-integration/</link>
		<comments>http://www.simonshullfoust.com/getting-started-with-goodbarry-integration/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 05:06:48 +0000</pubDate>
		<dc:creator>Simon Shull Foust</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[goodbarry]]></category>

		<guid isPermaLink="false">http://www.simonshullfoust.com/?p=3</guid>
		<description><![CDATA[Ok so let&#8217;s say you&#8217;ve got your design finalized and you&#8217;ve even had it sliced into valid xhtml/css. Integrating your site with GoodBarry isn&#8217;t as tedious as you may think it could be. There are basically two templates you&#8217;re going to need to edit.
But first, upload all your images, css files, and JavaScript files (if [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sfcreativegroup.com/services/goodbarry"><img class="alignright" src="/images/goodbarry.gif" alt="Goodbarry - Free 30-day trial." /></a>Ok so let&#8217;s say you&#8217;ve got your design finalized and you&#8217;ve even had it sliced into valid xhtml/css. Integrating your site with GoodBarry isn&#8217;t as tedious as you may think it could be. There are basically two templates you&#8217;re going to need to edit.</p>
<p>But first, upload all your images, css files, and JavaScript files (if any) via FTP. Then log in to your GoodBarry control panel (yourdomain.com/admin) and hover over the third link from the top right (named &#8220;Admin&#8221;) and go down to &#8220;Manage Site-Wide Templates&#8221;.</p>
<p>You&#8217;ll see, &#8220;Main&#8221;, &#8220;Printer&#8221;, and &#8220;Sub-template&#8221;. Click on Main first and check out how the default template looks in the wysiwyg. You&#8217;ll probably need to remember a lot of the tags you see like {tag_pagecontent} and place those in your template where you want them.</p>
<p>So what you want to do is click the blue less-than/greater-than arrows at the bottom of the editor to go to the HTML view. Here is where you want to replace what&#8217;s there with the HTML from your build-out. But don&#8217;t forget to include the stuff from the default template you&#8217;ll need - such as the reference in the header to the ModuleStyleSheets.css file, along with all the tags you&#8217;ll want to use. When you&#8217;re done hit &#8220;Save and Publish&#8221; and that&#8217;s basically it.</p>
<p>Now, I just glossed over what is a really easy process for more advanced users. And future blog posts will be more in depth about specific topics, including GoodBarry integration. However, if you&#8217;re interested in integrating your site with GoodBarry and you&#8217;d like the peace of mind that comes with having professionals do it, check out my company - <a href="http://www.sfcreativegroup.com">CMS integration is one of our specialities</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonshullfoust.com/getting-started-with-goodbarry-integration/feed/</wfw:commentRss>
		</item>
		<item>
		<title>No Longer a Freelancer: SF Creative Open for Business</title>
		<link>http://www.simonshullfoust.com/no-longer-a-freelancer-sf-creative-open-for-business/</link>
		<comments>http://www.simonshullfoust.com/no-longer-a-freelancer-sf-creative-open-for-business/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 20:22:19 +0000</pubDate>
		<dc:creator>Simon Shull Foust</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.simonshullfoust.com/?p=11</guid>
		<description><![CDATA[Though I have worked as a web designer specializing in PSD to HTML conversion and CSS in some capacity for several years now, I was really only a full-time freelancer for about 7 months. During that time simonsportfolio.com (which now forwards to simonshullfoust.com - my new blog) became one of the top search engine results [...]]]></description>
			<content:encoded><![CDATA[<p>Though I have worked as a web designer specializing in PSD to HTML conversion and CSS in some capacity for several years now, I was really only a full-time freelancer for about 7 months. During that time simonsportfolio.com (which now forwards to simonshullfoust.com - my new blog) became one of the top search engine results for things like &#8220;css buildouts&#8221;. I learned a lot during this time, and I am happy to say that I&#8217;ve started my own business, named <a href="http://www.sfcreativegroup.com">SF Creative Group</a>!</p>
<p>So if you arrived at this site looking for simonsportfolio.com, thanks for visiting, and I hope you find this new blog helpful!</p>
<p>The transition from working for other people, to being a freelancer, to owning my own business has been amazing, and I&#8217;m really excited about the things we&#8217;re doing over at SF Creative. I hope you&#8217;ll check us out today, especially if you&#8217;re in the market for CMS integration, PSD to HTML conversions, or full scale web design and developement.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonshullfoust.com/no-longer-a-freelancer-sf-creative-open-for-business/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Freelancers: 3 Steps to Effective Time Management</title>
		<link>http://www.simonshullfoust.com/freelancers-3-steps-to-effective-time-management/</link>
		<comments>http://www.simonshullfoust.com/freelancers-3-steps-to-effective-time-management/#comments</comments>
		<pubDate>Sun, 18 Nov 2007 00:58:27 +0000</pubDate>
		<dc:creator>Simon Shull Foust</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.simonshullfoust.com/?p=10</guid>
		<description><![CDATA[Time management can be difficult, especially when you&#8217;re first starting out. Should you plan every second of every day? Should you go with no schedule at all? How much time should you spend emailing, blogging, looking for new work? This post covers some important things I learned about time management from my own experience, and [...]]]></description>
			<content:encoded><![CDATA[<p>Time management can be difficult, especially when you&#8217;re first starting out. Should you plan every second of every day? Should you go with no schedule at all? How much time should you spend emailing, blogging, looking for new work? This post covers some important things I learned about time management from my own experience, and it is especially focused the time spent doing things that actually grow your business (rather than say, how to keep a good schedule in general).</p>
<p><strong>First, identify the top 5 activities that you want to do every day to grow your business.</strong> How do you know what grows your business? Identifying what grows your business can be tricky, especially if you are just starting out. This is where you&#8217;re going to have to put your trust in people who&#8217;ve been there and done that. Check out my post, &#8220;<a href="/5-ways-to-grow-your-freelance-business/">Top 5 Ways To Grow Your Freelance Business</a>&#8221; for some ideas as well as links to posts by others on this topic.</p>
<p>Here are my top 5 things. <em>But first, please note that these 5 things (I&#8217;m speaking particularly about the details) may not be your 5 things, and you shouldn&#8217;t feel like they have to be. Whatever works in this post, use it. Whatever doesn&#8217;t, throw it out. (I learned that from Bruce Lee and C.S. Lewis.)</em></p>
<ol>
<li><strong>Blogging</strong> <small>(&#8221;Offline&#8221; &amp; Online, Posting on social networking sites, blogs, forums, etc.)</small></li>
<li><strong>Marketing &amp; Branding</strong> <small>(&#8221;Offline&#8221; &amp; Online, My Portfolio Site, Google AdWords, etc.)</small></li>
<li><strong>Actively Seeking Work</strong> <small>(&#8221;Offline&#8221; &amp; Online)</small></li>
<li><strong>Research &amp; Planning</strong> <small>(Whiteboarding, reading magazines and blogs in my area etc.)</small></li>
<li><strong>Exercise</strong> <small>(Body, Soul, &amp; Mind – I can&#8217;t function at my best without the right exercise.)</small></li>
</ol>
<p><strong>Secondly, dedicate a block of time every day to doing those 3 things.</strong> And some things need more attention per day than others. For a frame of reference: I spend 1 hour each day on Blogging related stuff, and 30 minutes each on the other 4 things. That&#8217;s 2 hours of my day doing 5 things. The rest of the day, I work on whatever projects I have to do.</p>
<p>The idea is to do 5 things that bring your profit (whether immediately or gradually) every day, and to do them efficiently. By efficiently I mean in a way that best uses your time in balance. It&#8217;s easy to spend 4 hours every morning just reading digg, blogs that you like, sites related to your field, etc. But you have to set a fixed time (on things that are profitable) and stick to it.</p>
<p>Obviously, you&#8217;re going to need a way to track the time – a way that is better than looking at your watch/phone/clock. I use <a href="http://www.formassembly.com/time-tracker/" target="_blank">TimeTracker</a>, but I&#8217;m upgrading to Harvest soon here. Here is a screenshot of what my list looks like in the morning:</p>
<p style="text-align: center;"><img class="aligncenter" src="/wp-content/uploads/2007/11/timetracker.gif" alt="TimeTracker" /></p>
<p>I don&#8217;t spend an equal amount of time on the sub-tasks as the main task. For instance, I try not to spend too much time per day foolin with AdWords (or Analytics for that matter) because you can get lost in there. It&#8217;s too fun. And it&#8217;s not necessarily profitable. So, some days I don&#8217;t do anything at all with AdWords. Also, not every day is an &#8220;How is my SEO&#8221; day, etc.</p>
<p><strong>Lastly, examine how your business has grown after 30 days and reorganize your time.</strong> This is important. Using TimeTracker (or whatever) you can look back and see how well you met your goals of spending a certain amount of time on each thing. Then you judge how your business has changed or not. Now it&#8217;s time to decide how to reorganize your time on these 5 things (if at all) OR choose different things altogether.</p>
<p><strong>Here are some articles by others that may be helpful:</strong></p>
<ul>
<li><a href="http://www.graphicdesignblog.co.uk/freelancing-and-time-management/" target="_blank">Freelancing and Time Management</a></li>
<li><a href="http://f6design.com/journal/2007/03/15/time-management-tips-for-freelancers/" target="_blank">Time Management Tips For Freelancers</a></li>
<li><a href="http://ezinearticles.com/?6-Critical-Time-Management-Tips-For-Freelancers-And-Entrepreneurs&amp;id=761105" target="_blank">6 Critical Time Management Tips</a></li>
<li><a href="http://freelanceswitch.com/productivity/minimalist-time-management-keep-your-day-open/" target="_blank">Minimalist Time Management: Keep Your Day Open</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.simonshullfoust.com/freelancers-3-steps-to-effective-time-management/feed/</wfw:commentRss>
		</item>
		<item>
		<title>5 Ways To Grow Your Freelance Business</title>
		<link>http://www.simonshullfoust.com/5-ways-to-grow-your-freelance-business/</link>
		<comments>http://www.simonshullfoust.com/5-ways-to-grow-your-freelance-business/#comments</comments>
		<pubDate>Sat, 17 Nov 2007 23:22:23 +0000</pubDate>
		<dc:creator>Simon Shull Foust</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.simonshullfoust.com/?p=9</guid>
		<description><![CDATA[This post is a brief description of how I have grown my freelance business, and how you can too. I talk about the sites I read and post on, how the people I&#8217;ve met have helped me, and how you can possibly find the same success. This is really aimed at people just starting out, [...]]]></description>
			<content:encoded><![CDATA[<p>This post is a brief description of how I have grown my freelance business, and how you can too. I talk about the sites I read and post on, how the people I&#8217;ve met have helped me, and how you can possibly find the same success. This is really aimed at people just starting out, but it may be helpful or interesting to established freelancers and businesses. Leave a comment and let me know what you think.</p>
<p><strong>Blog, read &amp; post on blogs and forums related to your business.</strong> You probably either know that already or have at least heard it before. It&#8217;s really basic – these things connect you with people who can help you, and if you know what you&#8217;re talking about and can communicate well, then posting in these places will give you credibility. <em>One month after I started doing this, I met more people who were interested in working with me than I met in the previous three months combined.</em></p>
<p>Personally, I have found that joining sites like <a href="http://www.linkedin.com/in/simonshullfoust" target="_blank">LinkedIn</a> has been profitable. In the Answers section of the site, you can find questions that people are asking about your niche (whether it&#8217;s web design, development, graphic design, etc.). Answering and asking questions on that site is a good way to meet people and show that you know what you&#8217;re talking about. This gives you credibility, and with that people are more likely to offer you a job or accept a proposal you make. So, networking with professionals and prospective clients online is one potential avenue for finding new business. (But this doesn&#8217;t mean you don&#8217;t have to do the same thing “offline”.) Another good site to read (with a forum to post on) is FreelanceSwitch.</p>
<p><strong>Don&#8217;t lower your rates – if anything, raise them.</strong> There is a tendency to worry about the competition, and whether or not you&#8217;re not getting work because others are doing it for less money – especially if you&#8217;re first starting out or if you&#8217;ve hit a dry spell in your incoming jobs. But you have to charge what you know your service is worth. If you&#8217;re too cheap, you look unprofessional. People will assume that you&#8217;re a noob. Clients who don&#8217;t want noobs, but want professionals, are more likely to be good clients who pay you on time and give you less of a hassle. Charging what you&#8217;re worth is crucial. <em>Once I started charging what I was worth, I felt better about what I was doing and I had a renewed passion for finding business, as well as for getting projects in on time and with excellence.</em></p>
<p><strong>Connect with people who can help you.</strong> I work part-time for a dot com that sells home improvement products (<a href="http://www.plumbersurplus.com" target="_blank">PlumberSurplus</a>). Pretty different business than what I spend most of my time doing – web design. But the people that work there are very good at what they do. I&#8217;ve learned things about SEO, marketing, sales, and ecommerce that has helped me immensely in my own business. Also, I know people who work in the brick and mortar world (that sounds so lame) who have taught me a lot about people and what they want in a product or service. And it&#8217;s always translatable to what I do. <em>Listen to people who are good at what they do, no matter what business it is, and apply the principles to your own business.</em></p>
<p><strong>Don&#8217;t be afraid to ask for a job.</strong> Depending on your personality and experience, there can be a general timidity about asking for a job. You meet someone you know needs business cards (let&#8217;s say you&#8217;re a graphic designer), but you know they&#8217;re already talking to a big graphic design firm. It&#8217;s easy to feel intimidated, thinking to yourself things like, “They don&#8217;t want me; I&#8217;m inexperienced; they&#8217;ll go with the firm.” Or you might be afraid to ask for the amount of money that you want to ask for.</p>
<p>Listen, (yes, like Nike) just do it. <strong>Ask</strong>. Don&#8217;t be a pussywillow. What&#8217;s the worst that&#8217;ll happen? They&#8217;ll say, “No thanks” or laugh in your face? So what? Move on. It&#8217;s their loss. Don&#8217;t even think about it again. <span style="text-decoration: underline;">Sometimes I ask for jobs I think I have maybe a 5% chance of getting.</span> Because I lose nothing. I can only gain. <em>Once I started offering my services to people, asking for jobs, making proposals, guess what? I started getting more business. Wow.</em></p>
<p><strong>Lastly, never stop growing your skills.</strong> None of this means anything if you&#8217;re not good at what you do. Take a night class or practice the kinds of jobs that you want to get – then when you get them, you know you&#8217;re ready. When I started getting really good at what I do, I had a renewed confidence and that made everything else much easier. <em>Suddenly I knew how I wanted to market myself, I wasn&#8217;t afraid to ask for jobs, and to ask to be paid what I&#8217;m worth.</em></p>
<p><em>Don&#8217;t you want to feel that way too?</em></p>
<p><strong>Here are some helpful related articles by others:</strong></p>
<ul>
<li><a href="http://freelanceswitch.com/finding/how-to-use-social-networks-to-find-gigs/" target="_blank">How To Use Social Networks To Find Gigs</a></li>
<li><a href="http://freelanceswitch.com/designer/how-to-promote-your-graphic-design-business-%e2%80%93-part-one/" target="_blank">How To Promote Your Graphic Design Business Part 1</a></li>
<li><a href="http://selfmadechick.com/2007/11/13/how-to-generate-more-clients-and-more-sales-than-you-can-handle/" target="_blank">How To Generate More Clients and Sales Than You Can Handle</a></li>
<li><a href="http://blog.shaneandpeter.com/2007/09/10/10-steps-to-generating-new-business/" target="_blank">10 Steps to Generating New Business</a></li>
<li><a href="http://freelanceswitch.com/podcasts" target="_blank">FreelanceSwitch Podcasts</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.simonshullfoust.com/5-ways-to-grow-your-freelance-business/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Highlight Comments of Users Logged In</title>
		<link>http://www.simonshullfoust.com/highlight-comments-of-users-logged-in/</link>
		<comments>http://www.simonshullfoust.com/highlight-comments-of-users-logged-in/#comments</comments>
		<pubDate>Mon, 12 Nov 2007 11:50:28 +0000</pubDate>
		<dc:creator>Simon Shull Foust</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.simonshullfoust.com/?p=8</guid>
		<description><![CDATA[I don&#8217;t require people to log in to post comments on my blog posts, but people can register if they want to. When styling my comments list on blog posts I decided to highlight comments by users logged in. You&#8217;ve probably seen other blogs where comments that are posted by the site admin(s) are styled [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t require people to log in to post comments on my blog posts, but people can register if they want to. When styling my comments list on blog posts I decided to highlight comments by users logged in. You&#8217;ve probably seen other blogs where comments that are posted by the site admin(s) are styled differently than comments from other users.</p>
<p>On my blog, if a user comments while logged in you see a subtle image on the top right hand side of their comment that says &#8220;Member&#8221;.</p>
<p style="text-align: center"><img src="http://www.simonsportfolio.com/wp-content/uploads/2007/11/ss-comments.gif" class="leftBorder" alt="Screenshot of Comments" /></p>
<p>Achieving this was actually quite simple with Wordpress. First locate the following lines in your comments.php theme file:</p>
<blockquote class="code"><p>    &lt;?php foreach ($comments as $comment) : ?&gt;<br />
&lt;li &lt;?php echo $oddcomment; ?&gt;id=&#8221;comment-&lt;?php comment_ID() ?&gt;&#8221;&gt;<br />
&lt;cite&gt;&lt;?php comment_author_link() ?&gt;&lt;/cite&gt; Says:</p></blockquote>
<p>As you can see, we already have a class on the list item &#8211;&lt;li&gt;&#8211; which is to apply the class of &#8220;alt&#8221; to every other comment (that&#8217;s how you achieve the alternating gray or white background). Rather than get too messy trying to a second class to the list item (which is definitely doable, such as &lt;li class=&#8221;alt member&#8221;&gt;), we&#8217;re going to apply a class to a paragraph instead.</p>
<p>So we&#8217;re going to deal with that third line only. I didn&#8217;t want to use the &lt;cite&gt; tags, opting instead to simply use paragraph &#8211;&lt;p&gt;&#8211; tags. So I replaced the third line with this:</p>
<blockquote class="code"><p>&lt;p&lt;?php if ($comment-&gt;user_id) echo &#8216; class=&#8221;member&#8221;&#8216;; ?&gt;&gt;&lt;?php comment_author_link() ?&gt;:&lt;/p&gt;</p></blockquote>
<p>What this is saying is IF the commenter has a user ID then apply the class &#8220;member&#8221; on that paragraph element. (Wordpress assigns user IDs to registered users. So, if the commenter has an ID then that means he/she is a registered user and is logged in.)</p>
<p>Next we simply have to add some styling information to our css file, in this case:</p>
<blockquote class="code"><p>#comments ol p.member {<br />
background: url(&#8217;images/member.png&#8217;) top right no-repeat;<br />
}</p></blockquote>
<p>The element on in the html reads: &lt;p class=&#8221;member&#8221;&gt;Username:&lt;/p&gt; for every user logged in.</p>
<p>That&#8217;s it!</p>
<p>Hat tip: <a href="http://codex.wordpress.org/User:Jalenack/Comment_Loop_Beauty" target="_blank">Here&#8217;s how to do it for only admin</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonshullfoust.com/highlight-comments-of-users-logged-in/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using CSS With Images: Mini-Gallery</title>
		<link>http://www.simonshullfoust.com/using-css-with-images-mini-gallery/</link>
		<comments>http://www.simonshullfoust.com/using-css-with-images-mini-gallery/#comments</comments>
		<pubDate>Sun, 11 Nov 2007 09:45:13 +0000</pubDate>
		<dc:creator>Simon Shull Foust</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.simonshullfoust.com/?p=5</guid>
		<description><![CDATA[Recently I was working on a proposed redesign for one of my clients product pages, and I wanted to use one space to display the product image and any secondary images. I didn&#8217;t want to display all of them at once, because I didn&#8217;t want to take up that much space. So I decided to [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I was working on a proposed redesign for one of my clients product pages, and I wanted to use one space to display the product image and any secondary images. I didn&#8217;t want to display all of them at once, because I didn&#8217;t want to take up that much space. So I decided to use css to create a mini-gallery or mini-slideshow of sorts. Here&#8217;s how I did it.</p>
<p>First, I decided what size I wanted my main images to be - in this case, 300 x 300 pixels. I also knew that I wanted them to have a 5 pixels padding and a border, because I like that effect. I knew some of my images in the Surplus database weren&#8217;t square, so I decided to leave the border off of the images and just keep the padding:</p>
<blockquote class="code"><p> .imagePadding { padding: 5px; }</p></blockquote>
<p>I created a div container called &#8220;secondaryImage&#8221; and styled it with the border. This way, if an image isn&#8217;t square, the border around it will still be square. With  a 5 pixel padding, that brings my div to 310 x 310 pixels, with a hidden overflow (no scroll bar) for reasons that will become apparent later:</p>
<blockquote class="code"><p> #mainImage {<br />
width: 310px;<br />
height: 310px;<br />
border: 1px solid #c0c0c0;<br />
overflow: hidden; }</p></blockquote>
<p>Now, I decided to put the images in a list with no bullets (list-style: none), and simply specify the height of each &lt;li&gt; so that even if an image isn&#8217;t the full span of the div (300 x 300), only one image will be showing at a time. The css looks like this:</p>
<blockquote class="code"><p> #mainImage ul { list-style: none; }</p>
<p>#mainImage li {<br />
width: 310px;<br />
height: 310px; }</p></blockquote>
<p>Next I want to create small thumbnails of the three images so that when clicked, the main image appears in the main image box. I&#8217;ll make these about 30 x 30 pixels and give them a border. In the html, I&#8217;ll put them in a list and style them in the css to appear below the main image box. The css looks like this:</p>
<blockquote class="code"><p> #thumbs {<br />
list-style: none;<br />
clear: both; }</p>
<p>#thumbs li {<br />
float: left;<br />
margin: 3px 10px 0 0; }</p>
<p>#thumbs li a:link, #thumbs li a:active, #thumbs li a:visited, #thumbs li a:hover {<br />
width: 30px;<br />
height: 30px;<br />
display: block;<br />
border: 1px solid #c0c0c0; }</p></blockquote>
<p>One final thing I want to do to the css is to use a wildcard margin and padding line so that all margins and padding are set to 0, giving me greater control over these elements. This is a good thing to do because different browsers have different default margins and padding, so it is good to make everything 0 unless specified. And while we&#8217;re at it, let&#8217;s specify that images should not have borders unless specified, otherwise images that are enclosed in anchors (links) will have a border. To do this simply use:</p>
<blockquote class="code"><p> * { margin: 0; padding: 0; }</p>
<p>img { border: 0; }</p></blockquote>
<p>The final result looks like <a href="http://www.simonshullfoust.com/wp-content/uploads/2007/04/test.htm" target="_blank">this</a>. Click <a href="http://www.simonshullfoust.com/wp-content/uploads/2007/04/test.txt" target="_blank">here</a> for the full html, and <a href="http://www.simonshullfoust.com/wp-content/uploads/2007/04/style.css" target="_blank">here</a> for the full css.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonshullfoust.com/using-css-with-images-mini-gallery/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
