<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Baker Designs - Web Design Halifax Blog</title>
	<atom:link href="http://bakerdesigns.co.uk/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://bakerdesigns.co.uk/blog</link>
	<description>A blog about our company, Baker Designs - web design Halifax. Join us in our sometimes pointless discussion topics!</description>
	<lastBuildDate>Sun, 06 May 2012 21:02:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>HTML Form to Email &#8211; PHP Code and Tutorial</title>
		<link>http://bakerdesigns.co.uk/blog/2012/05/html-form-to-email-php-code-and-tutorial/</link>
		<comments>http://bakerdesigns.co.uk/blog/2012/05/html-form-to-email-php-code-and-tutorial/#comments</comments>
		<pubDate>Sun, 06 May 2012 21:02:30 +0000</pubDate>
		<dc:creator>Mat</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bakerdesigns.co.uk/blog/?p=56</guid>
		<description><![CDATA[Here is the code, copy and save to a file: (Tutorial Follows) Anything in red can, or will need to be changed &#60;?php if($_POST['submit']){ $name = $_POST['name']; $email = $_POST['email']; $message = $_POST['message'];  if (!$name) die(&#8216;Sending Failed, please fill in all &#8230; <a href="http://bakerdesigns.co.uk/blog/2012/05/html-form-to-email-php-code-and-tutorial/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h1><strong>Here is the code, copy and save to a file:</strong></h1>
<p><strong>(Tutorial Follows) Anything in red can, or will need to be changed</strong></p>
<address><span style="color: #c0c0c0;">&lt;?php if($_POST['submit']){			$name = $_POST['name'];		$email = $_POST['email'];		$message = $_POST['message']; 				if (!$name)			die(&#8216;Sending Failed, please fill in all fields.&#8217;);		if (!$email)			die(&#8216;Sending Failed, please fill in all fields.&#8217;);		if (!$message)			die(&#8216;Sending Failed, please fill in all fields.&#8217;);					 				<span style="color: #800000;">$ToName = &#8220;Mat&#8221;</span>;		<span style="color: #800000;">$ToEmail = &#8220;*********@bakerdesigns.co.uk&#8221;</span>;		$FromName = &#8220;$email&#8221;;		<span style="color: #800000;">$Subject = &#8220;New Question&#8221;</span>;				$Message = $message.&#8221;\n\nFrom: &#8220;.$name;						$headers = &#8220;From: &#8220;.$FromName.&#8221;";		mail($ToEmail, $Subject, $Message, $headers)or die(&#8220;Email could not be sent&#8221;);				die(&#8216;				&lt;html&gt;		&lt;head&gt;</span><br />
<span style="color: #c0c0c0;">&lt;meta http-equiv=&#8221;refresh&#8221; <span style="color: #800000;">content=&#8221;6;URL=\&#8217;../index.html\&#8217;&#8221;</span>&gt;&lt;/head&gt;</span><br />
<span style="color: #c0c0c0;">&lt;body&gt;&lt;div align=&#8221;center&#8221; style=&#8221;margin-top:200px; color:#333333;&#8221;&gt;&lt;h2&gt;Your Message Has Been Sent&lt;/h2&gt;&lt;p&gt;Thank you for your message, a reply will be sent shortly&lt;/p&gt;&lt;p&gt;You will shortly be redirected back to the homepage automatically&lt;/p&gt;&lt;p&gt;<span style="color: #800000;">&lt;img src=&#8221;../images/ajax-loader.gif&#8221; alt=&#8221;Redirecting&#8221; /&gt;</span>&lt;/p&gt;&lt;/div&gt;&lt;/body&gt;		&lt;/html&gt;				&#8216;); </span><br />
<span style="color: #c0c0c0;">}</span><br />
<span style="color: #c0c0c0;">?&gt;</span></address>
<address><strong><span style="color: #c0c0c0;"><br />
</span></strong></address>
<h1><strong>The Tutorial</strong></h1>
<p>First you need to create a HTML form. It needs to have three fields, one named name, one named email and another named message. Add a submit button. Make sure your HTML form&#8217;s action is set to the PHP file which contains the code above. Here is my example code:</p>
<address><span style="color: #c0c0c0;">&lt;form id=&#8221;form1&#8243; name=&#8221;form1&#8243; method=&#8221;post&#8221; action=&#8221;<span style="color: #800000;">scripts/FormToEmail.php</span>&#8220;&gt;</span></address>
<address><span style="color: #c0c0c0;">Full Name:&lt;input type=&#8221;text&#8221; name=&#8221;name&#8221; id=&#8221;name&#8221; /&gt;</span></address>
<address><span style="color: #c0c0c0;">Email Address:&lt;input type=&#8221;text&#8221; name=&#8221;email&#8221; id=&#8221;email&#8221; /&gt;</span></address>
<address><span style="color: #c0c0c0;">Message:&lt;textarea name=&#8221;message&#8221; id=&#8221;message&#8221; cols=&#8221;35&#8243; rows=&#8221;5&#8243; onmousemove=&#8221;FillForm()&#8221;&gt;&lt;/textarea&gt;</span></address>
<address><span style="color: #c0c0c0;">&lt;input type=&#8221;submit&#8221; name=&#8221;submit&#8221; id=&#8221;submit&#8221; value=&#8221;Submit&#8221; /&gt;</span></address>
<address><span style="color: #c0c0c0;">&lt;/form&gt;</span></address>
<address><span style="color: #c0c0c0;"><br />
</span></address>
<p><span style="color: #808080;">Now change everything in red such as the redirect in the code and the &#8216;action&#8217; tag in the HTML form. Also, you will need to copy the animated GIF below and save it somewhere. Put the location of this file in the PHP code section where the file location of &#8220;ajax-loader.gif&#8221; is placed.</span></p>
<p><span style="color: #808080;"><img class="alignnone" title="Loading Image" src="http://bakerdesigns.co.uk/web-design-halifax/images/ajax-loader.gif" alt="Loader Image" width="50" height="50" /><br />
</span></p>
<address>
</address>
<address><span style="color: #c0c0c0;"><br />
</span></address>
]]></content:encoded>
			<wfw:commentRss>http://bakerdesigns.co.uk/blog/2012/05/html-form-to-email-php-code-and-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Our New Website!!!</title>
		<link>http://bakerdesigns.co.uk/blog/2012/02/our-new-website/</link>
		<comments>http://bakerdesigns.co.uk/blog/2012/02/our-new-website/#comments</comments>
		<pubDate>Sat, 25 Feb 2012 22:52:52 +0000</pubDate>
		<dc:creator>Mat</dc:creator>
				<category><![CDATA[General Happenings]]></category>
		<category><![CDATA[Baker Designs]]></category>
		<category><![CDATA[New Website]]></category>
		<category><![CDATA[Web Design Halifax]]></category>
		<category><![CDATA[Web Design Package]]></category>

		<guid isPermaLink="false">http://bakerdesigns.co.uk/blog/?p=51</guid>
		<description><![CDATA[We have just completed our newly refurbished website. Instead of our old grey/black colour scheme, we decided to opt for a lighter white colour scheme. We decided to use green and blue to enhance aesthetics and our new &#8216;globe&#8217; logo suits us just right. &#8230; <a href="http://bakerdesigns.co.uk/blog/2012/02/our-new-website/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We have just completed our newly refurbished website. Instead of our old grey/black colour scheme, we decided to opt for a lighter white colour scheme. We decided to use green and blue to enhance aesthetics and our new &#8216;globe&#8217; logo suits us just right.</p>
<p>Visit <a title="Web Design Halifax" href="http://bakerdesigns.co.uk/web-design-halifax/">Web Design Halifax by Baker Designs</a> for a look.</p>
<p><strong><span style="text-decoration: underline;">So why?</span></strong></p>
<p>Well, firstly, our Google rankings were good, but not good enough! We needed a website that was even more Google friendly than our old one and made sure it was crammed full of important key words like &#8220;Web Design Halifax&#8221; or &#8220;Website Design&#8221;. We also made our coding much neater and used XHTML to give the GoogleBot an easy experience, all our old table layouts are long gone, div tags have now been used coupled with CSS which makes the code much easier to read.</p>
<p>Our old website was much too simple and small. We couldn&#8217;t fit everything we wanted to say on there! We needed a website that would be easier to expand or add to and the new site enables many pages to be added easily along with links in the sidebar we created. The old site was also getting a little dated. Although it used top of the range jQuery effects to create a Mac style dock menu, it lacked the flourish our web design team are used to!</p>
]]></content:encoded>
			<wfw:commentRss>http://bakerdesigns.co.uk/blog/2012/02/our-new-website/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Nivo Slider Slideshow / Gallery Positioning Problem</title>
		<link>http://bakerdesigns.co.uk/blog/2011/11/nivo-slider-slideshow-gallery-positioning-problem/</link>
		<comments>http://bakerdesigns.co.uk/blog/2011/11/nivo-slider-slideshow-gallery-positioning-problem/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 19:59:30 +0000</pubDate>
		<dc:creator>Mat</dc:creator>
				<category><![CDATA[General Happenings]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Nivo Slider]]></category>
		<category><![CDATA[Positioning Problem]]></category>

		<guid isPermaLink="false">http://bakerdesigns.co.uk/blog/?p=39</guid>
		<description><![CDATA[Here at Baker Designs &#8211; Web Design Halifax we use the Nivo Slider by Dev7Studios a lot. In fact, we think it is a superb jQuery plugin! We have had no problems with it up until now&#8230; Last week two of our &#8230; <a href="http://bakerdesigns.co.uk/blog/2011/11/nivo-slider-slideshow-gallery-positioning-problem/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here at <a title="Halifax Web Design" href="http://www.bakerdesigns.co.uk">Baker Designs &#8211; Web Design Halifax</a> we use the <a title="Visit the Nivo Slider Site" href="http://nivo.dev7studios.com/">Nivo Slider</a> by Dev7Studios a lot. In fact, we think it is a superb jQuery plugin! We have had no problems with it up until now&#8230;</p>
<p>Last week two of our sites using this plugin started to position the slider all wrong. The first image was fine, but the next image did not cover the first, it was aligned more to the bottom of the slider.</p>
<p>&#8212;&#8212;&#8212;&#8212;-</p>
<p>The problem with the slider was that we use the link to the newest version of jQuery through Google, and when the new version recently came out, it caused the Nivo Slider to act differently. To sort this out was very simple. Link to the jQuery version 1.6 and the Nivo Slider Positioning Problem should be sorted!</p>
<p>Here is what our link looks like &#8211; in the &lt;head&gt; section of our site, we are still using the link from Google&#8230;</p>
<p>&lt;script src=&#8221;http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js&#8221;&gt;&lt;/script&gt;</p>
<p>Now the websites which had the Nivo Slider Positioning problem are fine.</p>
]]></content:encoded>
			<wfw:commentRss>http://bakerdesigns.co.uk/blog/2011/11/nivo-slider-slideshow-gallery-positioning-problem/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Web Design Halifax Portfolio</title>
		<link>http://bakerdesigns.co.uk/blog/2011/10/web-design-halifax-portfolio/</link>
		<comments>http://bakerdesigns.co.uk/blog/2011/10/web-design-halifax-portfolio/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 16:22:11 +0000</pubDate>
		<dc:creator>Mat</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Web Design Halifax]]></category>

		<guid isPermaLink="false">http://bakerdesigns.co.uk/blog/?p=27</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<a href='http://bakerdesigns.co.uk/blog/2011/10/web-design-halifax-portfolio/altendorf/' title='Altendorf Panel Saw Website by Web Design Halifax'><img width="150" height="150" src="http://bakerdesigns.co.uk/blog/wp-content/uploads/2011/10/altendorf-150x150.jpg" class="attachment-thumbnail" alt="Altendorf Panel Saw Website" title="Altendorf Panel Saw Website by Web Design Halifax" /></a>
<a href='http://bakerdesigns.co.uk/blog/2011/10/web-design-halifax-portfolio/bakery/' title='Bakery Website - Gold Package with Sheek Design'><img width="150" height="150" src="http://bakerdesigns.co.uk/blog/wp-content/uploads/2011/10/bakery-150x150.jpg" class="attachment-thumbnail" alt="Bakery Website" title="Bakery Website - Gold Package with Sheek Design" /></a>
<a href='http://bakerdesigns.co.uk/blog/2011/10/web-design-halifax-portfolio/dance/' title='MADPA Dance School in Halifax'><img width="150" height="150" src="http://bakerdesigns.co.uk/blog/wp-content/uploads/2011/10/dance-150x150.jpg" class="attachment-thumbnail" alt="MADPA Dance School in Halifax" title="MADPA Dance School in Halifax" /></a>
<a href='http://bakerdesigns.co.uk/blog/2011/10/web-design-halifax-portfolio/extra/' title='Extra-Hours by Baker Designs, web design Halifax'><img width="150" height="150" src="http://bakerdesigns.co.uk/blog/wp-content/uploads/2011/10/extra-150x150.jpg" class="attachment-thumbnail" alt="Extra-Hours" title="Extra-Hours by Baker Designs, web design Halifax" /></a>
<a href='http://bakerdesigns.co.uk/blog/2011/10/web-design-halifax-portfolio/lbbrass/' title='LB Brass - Small Brass Group based in Halifax'><img width="150" height="150" src="http://bakerdesigns.co.uk/blog/wp-content/uploads/2011/10/lbbrass-150x150.jpg" class="attachment-thumbnail" alt="LB Brass - Small Brass Group based in Halifax" title="LB Brass - Small Brass Group based in Halifax" /></a>
<a href='http://bakerdesigns.co.uk/blog/2011/10/web-design-halifax-portfolio/wadkin/' title='Wadkin Machinery - Website by Baker Designs web design in Halifax'><img width="150" height="150" src="http://bakerdesigns.co.uk/blog/wp-content/uploads/2011/10/wadkin-150x150.jpg" class="attachment-thumbnail" alt="Wadkin Machinery" title="Wadkin Machinery - Website by Baker Designs web design in Halifax" /></a>
<a href='http://bakerdesigns.co.uk/blog/2011/10/web-design-halifax-portfolio/woodknives/' title='Woodworking Knives E-Commerce Shop - Website Design Halifax'><img width="150" height="150" src="http://bakerdesigns.co.uk/blog/wp-content/uploads/2011/10/woodknives-150x150.jpg" class="attachment-thumbnail" alt="Woodworking Knives E-Commerce Shop" title="Woodworking Knives E-Commerce Shop - Website Design Halifax" /></a>
<a href='http://bakerdesigns.co.uk/blog/2011/10/web-design-halifax-portfolio/woodtooling/' title='Woodworking Tooling by Web Design Halifax'><img width="150" height="150" src="http://bakerdesigns.co.uk/blog/wp-content/uploads/2011/10/woodtooling-150x150.jpg" class="attachment-thumbnail" alt="Woodworking Tooling Website" title="Woodworking Tooling by Web Design Halifax" /></a>

]]></content:encoded>
			<wfw:commentRss>http://bakerdesigns.co.uk/blog/2011/10/web-design-halifax-portfolio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Big Project for our Web Design Halifax team!</title>
		<link>http://bakerdesigns.co.uk/blog/2011/10/a-big-project-for-our-web-design-halifax-team/</link>
		<comments>http://bakerdesigns.co.uk/blog/2011/10/a-big-project-for-our-web-design-halifax-team/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 09:40:31 +0000</pubDate>
		<dc:creator>Mat</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[advanced package]]></category>
		<category><![CDATA[big]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Extra-Hours]]></category>
		<category><![CDATA[Halifax]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://bakerdesigns.co.uk/blog/?p=22</guid>
		<description><![CDATA[We recently teamed up with one of our good business friends to discuss a new venture for the both of us. It will be called Extra-Hours, but that is about all we can tell you i&#8217;m afraid! We are very &#8230; <a href="http://bakerdesigns.co.uk/blog/2011/10/a-big-project-for-our-web-design-halifax-team/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We recently teamed up with one of our good business friends to discuss a new venture for the both of us. It will be called Extra-Hours, but that is about all we can tell you i&#8217;m afraid! We are very exited and the project is about 65% complete at the moment.</p>
<p>If you take a look in our portfolio you can see a design of the website, but our team has been working on some great features using jQuery. Sliding down login screens, fading image sideshows are just some of the effects you will see on our new site. Our web design Halifax PHP programming team have been very busy on this project, but all the hard work is starting to pay off! It&#8217;s looking great!</p>
<p>As soon as we finish this site, we will post a link on our portfolio page for you to look at, you may even want to sign up, it&#8217;s going to be free!</p>
]]></content:encoded>
			<wfw:commentRss>http://bakerdesigns.co.uk/blog/2011/10/a-big-project-for-our-web-design-halifax-team/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Baker Designs &#8211; Web Design in Halifax is Happy to be Joining the World of WordPress!</title>
		<link>http://bakerdesigns.co.uk/blog/2011/10/baker-designs-web-design-in-halifax-is-happy-to-be-joining-the-world-of-wordpress/</link>
		<comments>http://bakerdesigns.co.uk/blog/2011/10/baker-designs-web-design-in-halifax-is-happy-to-be-joining-the-world-of-wordpress/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 21:18:27 +0000</pubDate>
		<dc:creator>Mat</dc:creator>
				<category><![CDATA[General Happenings]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Halifax]]></category>
		<category><![CDATA[joining]]></category>
		<category><![CDATA[meets]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://bakerdesigns.co.uk/blog/?p=8</guid>
		<description><![CDATA[Here at Baker Designs Halifax web design we have been wondering for a while whether setting up a blog would be beneficial to us as a company. After a couple of months and our SEO team desperate for one, here it is! &#8230; <a href="http://bakerdesigns.co.uk/blog/2011/10/baker-designs-web-design-in-halifax-is-happy-to-be-joining-the-world-of-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here at Baker Designs Halifax web design we have been wondering for a while whether setting up a blog would be beneficial to us as a company. After a couple of months and our SEO team desperate for one, here it is!</p>
<p>We decided to use the simple but effective WordPress software. It was super quick to set up, and not much hassle to edit the CSS code (Styling). Now we can share our thoughts and feelings with the world from the small town of Halifax!</p>
<p>The main reason we have added a blog to our site is to connect better with our clients, but mainly for the search engine rankings it will give us. Our basic site only contains 4/5 different pages, meaning our competition just had it over us on the amount of content and keywords. A blog can provide an excellent place to add rich keyword content to your site, like &#8220;Web Design Halifax&#8221; and also gives you more room to expand a website and get your customers involved with the comments section.</p>
<p>We hope you enjoy reading our Halifax web design (&lt;&lt; A cheeky one) blog in the near future!</p>
]]></content:encoded>
			<wfw:commentRss>http://bakerdesigns.co.uk/blog/2011/10/baker-designs-web-design-in-halifax-is-happy-to-be-joining-the-world-of-wordpress/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

