<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3" -->
<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/"
	>

<channel>
	<title>Reynolds Design Studio Blog</title>
	<link>http://www.reynoldsdesignstudio.com/blog</link>
	<description>Talking about web development, projects, and utilities that we find or create</description>
	<pubDate>Mon, 09 Jun 2008 01:16:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3</generator>
	<language>en</language>
			<item>
		<title>Site Launch: Go2Wed.com</title>
		<link>http://www.reynoldsdesignstudio.com/blog/2008/06/08/site-launch-go2wedcom/</link>
		<comments>http://www.reynoldsdesignstudio.com/blog/2008/06/08/site-launch-go2wedcom/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 01:16:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Recent Projects]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[go2wed.com]]></category>

		<category><![CDATA[graphic design]]></category>

		<category><![CDATA[wedding services]]></category>

		<guid isPermaLink="false">http://www.reynoldsdesignstudio.com/blog/2008/06/08/site-launch-go2wedcom/</guid>
		<description><![CDATA[Go2wed.com is the latest revision of a Rochester MN based wedding planning guide website.  Although the site has been online for almost a year now, we decided now would be a great time to feature the site.  The site features well over 300 individual companies in over 30 categories throughout Minnesota. Go2wed.com allows [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.go2wed.com" title="Go2wed.com">Go2wed.com</a> is the latest revision of a Rochester MN based wedding planning guide website.  Although the site has been online for almost a year now, we decided now would be a great time to feature the site.  The site features well over 300 individual companies in over 30 categories throughout Minnesota. Go2wed.com allows for visitors to create their own websites, browse companies, comment and request information from a specific company.</p>
<p>We have recently added a whole new bridal administration panel dubbed &#8220;My Account&#8221;. From this panel they can download bridal planning sheets, update their account information, create a free bridal website that they can send to family and friends, and many other things.</p>
<p>We have also reworked the vendor administration panel for ease of flow and use. Allowing vendors to update advertisements they have purchased such as banner ads and featured vendor graphics.</p>
<p>All in all we are very pleased with the results go2wed.com has received in terms of usage stats and comments from individuals.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reynoldsdesignstudio.com/blog/2008/06/08/site-launch-go2wedcom/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Some basic CSS Tips</title>
		<link>http://www.reynoldsdesignstudio.com/blog/2008/04/17/some-basic-css-tips/</link>
		<comments>http://www.reynoldsdesignstudio.com/blog/2008/04/17/some-basic-css-tips/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 02:01:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Coding]]></category>

		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.reynoldsdesignstudio.com/blog/2008/04/17/some-basic-css-tips/</guid>
		<description><![CDATA[For all of you that wanted to build a site with css but didn&#8217;t know where to start or could only get things working in one browser this should help you out.

The difference between margin and padding
Classes vs ID&#8217;s (dot vs pound syntax)
Using the cascade

1. The difference between margin and padding
Although it may not seem [...]]]></description>
			<content:encoded><![CDATA[<p>For all of you that wanted to build a site with css but didn&#8217;t know where to start or could only get things working in one browser this should help you out.</p>
<ol>
<li>The difference between margin and padding</li>
<li>Classes vs ID&#8217;s (dot vs pound syntax)</li>
<li>Using the cascade</li>
</ol>
<p><strong>1. The difference between margin and padding</strong></p>
<p>Although it may not seem logical to start off talking about a specific property of css, this will help with some frustrating hair-pulling nights. IE 6 and Firefox display margin and padding differently. I haven&#8217;t tested this in IE 7 yet it works fine in that so this should cover you for all cases.</p>
<ul>
<li>IE 6 - if you have the following css
<ul>
<li>margin:0px 0px 0px 15px; OR margin-left: 15px;</li>
<li>IE 6 will actually display your items as
<ul>
<li>margin:0px 0px 0px 30px; OR margin-left:30px;</li>
<li>It doesn&#8217;t physically change your code but you will end up with a doubling of the left margin, causing major headaches when trying to position items in place. The solution is to use the padding property, since padding doesn&#8217;t do the left side doubling error.</li>
</ul>
</li>
<li>padding:0px 0px 0px 15px; OR padding-left:15px;</li>
</ul>
</li>
</ul>
<p>If you learn to use padding properly you can create some extremely complex designs using only css.</p>
<p><strong>2. Classes vs ID&#8217;s (dot vs pound sytax)</strong></p>
<p>This is quite a bit easier than the padding issue listed about but still important. Classes can  be set to any item multiple times in a document, however an ID can only be set once per document. This is related more to javascript using the DOM but thats for another topic.</p>
<p>Other than only being used once per page classes and ID&#8217;s work the same. You can use the same styling for each item.</p>
<p>#myStyle {<br />
padding:0px; margin:0px; color:#FFCC00; text-decoration:underline;<br />
}</p>
<p>.myStyle {<br />
padding:0px; margin:0px; color:#FFCC00; text-decoration:underline;<br />
}</p>
<p>both of the above items will make text red and underlined with no space around it. Not a particularly useful style but you get the idea. You would use the following styles in this fashion</p>
<p>&lt;p id=&#8221;myStyle&#8221;&gt;your text here&lt;/p&gt;<br />
or<br />
&lt;p class=&#8221;myStyle&#8221;&gt;your text here&lt;/p&gt;</p>
<p><strong>3. Using the cascade</strong></p>
<p>The cascade is why css was created. You can set a style in the top of the document and can base all of your other tags off this master line. Making minor tweaks here and there you can easily update portions of your site with a new look and feel without having to recode anything. Take a look at <a target="_blank" href="http://www.csszengarden.com/" title="CSS Zen Garden">http://www.csszengarden.com/</a> to see what you can do with css.</p>
<p>body {<br />
font-family:Arial, Verdana, sans-serif; font-size:1.0em; color:#999999;<br />
}</p>
<p>So the above style will set the font to Arial, roughly 14pt and gray for the entire body tag. Notice how I didn&#8217;t put . or # in front of body. This will set it to the specific tag on the page, rather than having to write &lt;body class=&#8221;body&#8221;&gt;. Now if you add the next style below body you can update the font size and color without having to actually change your code.</p>
<p>p {<br />
font-size:1.5em; color:#FFCC00;<br />
}</p>
<p>this will make any &lt;p&gt; tag in your site roughly 20pt and red. However if you use an &lt;h#&gt; tag the color will still be gray. Pretty cool.</p>
<p>However, the real power comes in when you target a specific item on the page. For example.</p>
<p>&lt;div class=&#8221;holder&#8221;&gt;<br />
   &lt;p&gt;Your text&lt;/p&gt;<br />
   &lt;div class=&#8221;text&#8221;&gt;<br />
      &lt;p&gt;More text&lt;/p&gt;<br />
   &lt;/div&gt;<br />
&lt;/div&gt;</p>
<p>the css to target &#8220;More text&#8221; would look like this<br />
div.holder div.text p {<br />
your styles here<br />
}</p>
<p>this way you don&#8217;t have to give each &lt;p&gt; tag within the div text a specific class, you can easily add and change the code within that div without worrying about if someone adds more &lt;p&gt; tags that the styles dont carry over.</p>
<p>Take a look at how our site is built and learn from that.</p>
<p>At a later time we&#8217;ll discuss the float, and position tags.</p>
<p>~RDS</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reynoldsdesignstudio.com/blog/2008/04/17/some-basic-css-tips/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Utility Launch: RDS Gallery 4.0</title>
		<link>http://www.reynoldsdesignstudio.com/blog/2008/04/02/utility-launch-rds-gallery-40/</link>
		<comments>http://www.reynoldsdesignstudio.com/blog/2008/04/02/utility-launch-rds-gallery-40/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 01:35:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Recent Projects]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[Website Utilities]]></category>

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

		<category><![CDATA[RDS Gallery]]></category>

		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.reynoldsdesignstudio.com/blog/2008/04/02/utility-launch-rds-gallery-40/</guid>
		<description><![CDATA[Although this isn&#8217;t a brand new utility we feel it&#8217;s pretty cool.  RDS Gallery 4.0 is the newest installment of our photo gallery utility. One of the most requested features was to re-arrange photos in the galleries. We now allow the user to drag and drop the image in the order they want. This [...]]]></description>
			<content:encoded><![CDATA[<p>Although this isn&#8217;t a brand new utility we feel it&#8217;s pretty cool.  RDS Gallery 4.0 is the newest installment of our photo gallery utility. One of the most requested features was to re-arrange photos in the galleries. We now allow the user to drag and drop the image in the order they want. This works well for administrators who want to tell a photo story.</p>
<p>One of the best features is the ease of customization to the gallery. Since the utility is built in-house there is no proprietary code that cannot be edited.</p>
<p><a href="http://www.goldrushmn.com/gallery/" title="RDS Gallery 4.0" target="_blank">Click here</a> to view a sample of the RDS Gallery.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reynoldsdesignstudio.com/blog/2008/04/02/utility-launch-rds-gallery-40/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Site Launch: Reynolds Design Studio</title>
		<link>http://www.reynoldsdesignstudio.com/blog/2008/03/22/site-launch-reynolds-design-studio/</link>
		<comments>http://www.reynoldsdesignstudio.com/blog/2008/03/22/site-launch-reynolds-design-studio/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 03:02:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Recent Projects]]></category>

		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.reynoldsdesignstudio.com/blog/2008/03/22/site-launch-reynolds-design-studio/</guid>
		<description><![CDATA[After two years and three designs Reynolds Design Studio finally has a new website. Our new site shows off what we can do. We implemented a new blog to discuss new findings in the internet industry and a new way of displaying our work.]]></description>
			<content:encoded><![CDATA[<p>After two years and three designs Reynolds Design Studio finally has a new website. Our new site shows off what we can do. We implemented a new blog to discuss new findings in the internet industry and a new way of displaying our work.</p>
<p>Feel free to browse the new Reynolds Design Studio website and as always feel free to contact us regarding your creative projects!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reynoldsdesignstudio.com/blog/2008/03/22/site-launch-reynolds-design-studio/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sending HTML Emails</title>
		<link>http://www.reynoldsdesignstudio.com/blog/2008/03/22/sending-html-emails/</link>
		<comments>http://www.reynoldsdesignstudio.com/blog/2008/03/22/sending-html-emails/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 02:58:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Coding]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[html email]]></category>

		<category><![CDATA[html mime headers]]></category>

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

		<guid isPermaLink="false">http://www.reynoldsdesignstudio.com/blog/2008/03/22/sending-html-emails/</guid>
		<description><![CDATA[Recently I was trying to send HTML based emails from a server-side script. The configuration of the server, however, wouldn't let me send them without a bunch of trial and error or they would send and never look like I intended.]]></description>
			<content:encoded><![CDATA[<p>Recently I was trying to send HTML based emails from a server-side script. The configuration of the server, however, wouldn&#8217;t let me send them without a bunch of trial and error or they would send and never look like I intended. A Google search on the topic returned lots of somewhat useful information with the exception of this <a target="_blank" href="http://www.phpguru.org/static/mime.mail.html">little utility from PHPGuru</a>. HTML Mime Mail allows you to send to multiple recipients and even send attachments.</p>
<p>After some working with the script I realized that the script won&#8217;t allow you to send multiple emails to the same recipient. This can cause some headaches if you are trying to test the bcc functionality. So if you&#8217;re looking for an easy way to send HTML emails from a server I would suggest looking at HTML Mime Mail from PHPGuru</p>
<p>~RDS</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reynoldsdesignstudio.com/blog/2008/03/22/sending-html-emails/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Redirecting an HTML Page in PHP</title>
		<link>http://www.reynoldsdesignstudio.com/blog/2008/03/22/redirecting-an-html-page-in-php/</link>
		<comments>http://www.reynoldsdesignstudio.com/blog/2008/03/22/redirecting-an-html-page-in-php/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 02:55:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Coding]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[PHP Coding]]></category>

		<category><![CDATA[PHP Programming]]></category>

		<guid isPermaLink="false">http://www.reynoldsdesignstudio.com/blog/2008/03/22/redirecting-an-html-page-in-php/</guid>
		<description><![CDATA[If your new to PHP and looking for an easy way to send your user to another page try using the php function header(). You shouldn't use this function if you are trying to redirect a site or page for SEO (search engine optimization) reasons because Google and the other engines won't give you credit for the redirect.]]></description>
			<content:encoded><![CDATA[<p>If your new to PHP and looking for an easy way to send your user to another page try using the <a target="_blank" href="http://www.php.net/manual/en/function.header.php" title="PHP Header">php function header()</a>. You shouldn&#8217;t use this function if you are trying to redirect a site or page for SEO (search engine optimization) reasons because Google and the other engines won&#8217;t give you credit for the redirect.</p>
<p>I use the header redirect function after parsing an html form, or log-in script has been run. If you are going to use this with other html content the function will not work if you have printed <strong>ANYTHING </strong>to the screen. You should do something like the following:</p>
<p><font color="#ff0000">&lt;?<br />
<font color="#3366ff"><font color="#ff9900"># this will redirect you page to google.com</font><br />
header(</font><font color="#ff0000">&#8220;</font>Location: http://www.google.com&#8221;<font color="#3366ff">);</font><br />
?&gt;</font><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;&#8230;</p>
<p>If you put the &lt;? ?&gt; code under the &lt;html&gt; tag the function will not work as you have printed something to the screen. Just some food for thought.</p>
<p>~RDS</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reynoldsdesignstudio.com/blog/2008/03/22/redirecting-an-html-page-in-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Site Launch: Out of the Box Dates</title>
		<link>http://www.reynoldsdesignstudio.com/blog/2008/03/01/site-launch-out-of-the-box-dates/</link>
		<comments>http://www.reynoldsdesignstudio.com/blog/2008/03/01/site-launch-out-of-the-box-dates/#comments</comments>
		<pubDate>Sun, 02 Mar 2008 05:28:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Recent Projects]]></category>

		<category><![CDATA[Web Development]]></category>

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

		<category><![CDATA[graphic design]]></category>

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

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

		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.reynoldsdesignstudio.com/blog/2008/03/01/site-launch-out-of-the-box-dates/</guid>
		<description><![CDATA[Reynolds Design Studio recently launched Out of the Box Dates, a unique service letting people either download or purchase a romantic adventure with all of the planning taken care of.]]></description>
			<content:encoded><![CDATA[<p>Reynolds Design Studio recently launched <a href="http://www.outoftheboxdates.com" title="Out of the Box Dates" target="_blank">Out of the Box Dates</a>, a unique service letting people either download or purchase a romantic adventure with all of the planning taken care of.</p>
<p><strong>Out of the Box Dates:</strong> <em>&#8220;It&#8217;s more than just a date, it&#8217;s a complete romantic adventure • It is an   investment in your relationship  • It is a chance to slow things down • It is   TIME - for one another.&#8221; </em>This statement basically sums up what Out of the Box Dates is all about.</p>
<p>LeeAnn came to Reynolds Design Studio with a basic need: a great website to promote their service. She received one of the most unique designs we have created (relying heavily on transparent images), a powerful paypal ecom / date download utility and a highly seo friendly site build.</p>
<p>We look forward to helping Out of the Box Dates complete their vision with a romance quiz and other tools in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reynoldsdesignstudio.com/blog/2008/03/01/site-launch-out-of-the-box-dates/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
