<?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>SEO Creative &#187; Blog</title>
	<atom:link href="http://www.seo-creative.co.uk/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.seo-creative.co.uk</link>
	<description></description>
	<lastBuildDate>Thu, 02 Feb 2012 15:23:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Protecting your WordPress website</title>
		<link>http://www.seo-creative.co.uk/tutorials/protecting-your-wordpress-website/</link>
		<comments>http://www.seo-creative.co.uk/tutorials/protecting-your-wordpress-website/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 17:20:36 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.seo-creative.co.uk/?p=4736</guid>
		<description><![CDATA[<a href="http://www.seo-creative.co.uk/tutorials/protecting-your-wordpress-website/" rel="nofollow"><img align="left" hspace="5" width="150" height="150" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/11949848541326072700padlock_aj_ashton_01.svg_.med_-150x150.png" class="alignleft tfe wp-post-image" alt="11949848541326072700padlock_aj_ashton_01.svg.med" title="11949848541326072700padlock_aj_ashton_01.svg.med" /></a>Ever been hacked or just want to be protected in case a hacker comes knocking at your backdoor? A few simple steps will help keep many of the core WordPress files protected and hidden away.]]></description>
			<content:encoded><![CDATA[<p>Most of the following steps to secure your website are based around WordPress and making it more secure. However some of the .htaccess amends can be done for any type of website. The following steps that I&#8217;ve been taking to secure all new-development WordPress sites are to prevent from hackers accessing core files maliciously. </p>
<p>Firstly, open up your blog in a new window and put in &#8220;/wp-includes/&#8221;. If its blank, shows an Apache page or a 404 page not found error you&#8217;re safe! If you see a long list of files, well you probably guessed that these need to be hidden. Having these open lets anybody see your core files that are located within that directory. To prevent this we can create our own .htaccess file for the wp-includes folder. Within this htaccess file a single line of code will tell the server not to index any file in that folder. To do this simply put the below at the top of your htaccess file in the root. </p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
</pre>
<pre><span class="html">Options All -Indexes</span></pre>
</div>
<p>While we are working with htaccess files, we might as well protect them and the wp-config.php file in the root. In all of the htaccess files that are within your website put in this code: </p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
6
7
8
9
</pre>
<pre><span class="html"># protect the htaccess file
<span class="html-other-element">&lt;files .htaccess&gt;</span>
order allow,deny
deny from all
<span class="html-other-element">&lt;/files&gt;</span></span></pre>
</div>
<p>Within the root htaccess file you&#8217;ll need to put the following code to protect the wp-config.php file:</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
6
7
8
9
</pre>
<pre><span class="html"># protect wpconfig.php
<span class="html-other-element">&lt;files wp-config.php&gt;</span>
order allow,deny
deny from all
<span class="html-other-element">&lt;/files&gt;</span></span></pre>
</div>
<p>Lets brake the code down so that we understand it. Firstly the hashtag is a comment line, so anything can be put in this line and will not effect our htaccess file. The second line targets a selected file, in the latter case its the wp-config.php file. Next we tell the htacces what order we are setting our privileges in, firstly we are defining what IP addresses to allow, then what IP addresses to deny. We don&#8217;t need to allow anybody access to these files, so we can simply put &#8216;deny from all&#8217; on the penultimate line. The last line is to close the code targeting the specified file. </p>
<p>Next up, we need to log into our wp-admin section with an administrator account. This is so we can delete the &#8216;admin&#8217; account if there is one. One of the biggest security risk within WordPress is site that only have admin accounts. These admin accounts are usually set up by default when WordPress is installed, knowing that a site will usually have an admin account gives a hacker a big head start, knowing they don&#8217;t have to figure out the username. (If you don&#8217;t have an &#8216;admin&#8217; account you can skip this bit.) To do this, firstly create a NEW user in user control panel, Go for something original that would be hard to guess and create a secure password. You can use the built in WordPress strength meter for this, or one I found <a href="http://howsecureismypassword.net/" rel="nofollow">http://howsecureismypassword.net/</a> which will tell you how long it would take a desktop PC to figure your password out. Don&#8217;t forget to set the user role to &#8216;administrator&#8217;.<br />
Once done, log out and back in with your new administrator account and access your user accounts once more. You want to delete &#8216;admin&#8217;, you&#8217;ll be asked by WordPress what you want to do with all content published under the admin user name. You can either delete this (not sure why you would though!) or Transfer it to another user. You want to transfer all content to the new administrator account you have created. </p>
<p>There are a few other amends you can do to your site, with a couple of plugins. Two of which I like to use are User Locker and WP Security Scan. The former will check how many times an account has tried to be accessed, if more than 5 it will lock/disable the account. This is useful against brute force attacks. WP Security Scan will let you know whats a potential security risk on your WordPress website, It checks and does numerous things like: </p>
<ul>
<li>Checks database name prefix</li>
<li>Checks for admin user account</li>
<li>Hides the current WordPress version</li>
<li>Turns off WPDB errors</li>
<li>Removes WP ID META tag from core files</li>
<li>Checks for wp-admin htaccess files</li>
<li>Checks latest version of WordPress</li>
</ul>
<p>We discussed table prefixes and while the plug-in and many other WordPress users out there suggest you should change it, it could throw errors on current sites. WordPress also suggest that you should stick with the current _wp prefix tag. I argue that it should be changed as its quite a big risk, as all WP tables will be called the same it would be easy for a hacker to target a specific table within your WP site. WP Security Scan will do this for you as well, which takes seconds. </p>
<p>Keeping your WordPress website on the latest update will always help to prevent hacks and bugs appearing. Hole will always be filled on new releases, making WordPress ever stronger. </p>
<p>Hopefully this has been useful and will keep those hackers at bay!</p>
<p>Happy Coding!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seo-creative.co.uk/tutorials/protecting-your-wordpress-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Form Default Value Removal on Focus</title>
		<link>http://www.seo-creative.co.uk/tutorials/html-form-default-value-removal-on-focus/</link>
		<comments>http://www.seo-creative.co.uk/tutorials/html-form-default-value-removal-on-focus/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 15:56:34 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[html form]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.seo-creative.co.uk/?p=4720</guid>
		<description><![CDATA[<a href="http://www.seo-creative.co.uk/tutorials/html-form-default-value-removal-on-focus/" rel="nofollow"><img align="left" hspace="5" width="150" height="150" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/html-form-default-value-removal-onfocus.jpg" class="alignleft tfe wp-post-image" alt="html form default value removal onfocus" title="html form default value removal onfocus" /></a>A common request from clients when building html forms for websites is for the field to have a default value which will disappear when users click on the box.]]></description>
			<content:encoded><![CDATA[<p>A common request from clients when building html forms for websites here at <a href="http://www.seo-creative.co.uk/" title="SEO Creative">SEO Creative</a> is for the field to have a default value which will disappear when users click on the box.  This is becoming very popular in new <a title="Website design" href="http://www.seo-creative.co.uk/creative/web-design/">website design</a>, negating the use of traditional labels, or even just span text next to the input describing the field.</p>
<p>To do this on page, simply use the below code example as a point of reference when building your forms:</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
</pre>
<pre><span class="php"><span class="php-operator">&lt;</span>form<span class="php-operator">&gt;</span>
<span class="php-operator">&lt;</span>input type<span class="php-operator">=</span><span class="php-string">&quot;text&quot;</span> value<span class="php-operator">=</span><span class="php-string">&quot;Default Value&quot;</span> name<span class="php-operator">=</span><span class="php-string">&quot;name&quot;</span> onblur<span class="php-operator">=</span><span class="php-string">&quot;if (this.value == '') {this.value = 'Default Value';}&quot;</span> onfocus<span class="php-operator">=</span><span class="php-string">&quot;if (this.value == 'Default Value') {this.value = '';}&quot;</span> <span class="php-operator">/</span><span class="php-operator">&gt;</span>
<span class="php-operator">&lt;</span><span class="php-operator">/</span>form<span class="php-operator">&gt;</span></span></pre>
</div>
<p>For each input field you need to define the value.  Then add an onblur condition (when a user clicks away from an input field and the cursor loses it&#8217;s focus on the element) and an onfocus condition (when a user clicks the cursor into the input box element).  The code above checks the current box value.</p>
<ul>
<li>If the value is equal to what you have defined it will change the value to &#8216;blank&#8217;.</li>
<li>If the value is blank when the user clicks away it will put the &#8216;default value&#8217; back into the input field.</li>
<li>If the value is not equal to what you have defined (i.e. a user has entered text into the box) it will not change the field value on blur or focus.</li>
</ul>
<p>Very simple, very handy and very cool!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seo-creative.co.uk/tutorials/html-form-default-value-removal-on-focus/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sex Sells, but at what cost?</title>
		<link>http://www.seo-creative.co.uk/internet-marketing/sex-sells-but-at-what-cost/</link>
		<comments>http://www.seo-creative.co.uk/internet-marketing/sex-sells-but-at-what-cost/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 14:25:00 +0000</pubDate>
		<dc:creator>Sadie</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.seo-creative.co.uk/?p=4701</guid>
		<description><![CDATA[<a href="http://www.seo-creative.co.uk/internet-marketing/sex-sells-but-at-what-cost/" rel="nofollow"><img align="left" hspace="5" width="150" height="150" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/Booth-Babes-150x150.jpg" class="alignleft wp-post-image tfe" alt="booth babes" title="Booth-Babes" /></a>Sex sells in marketing, in fact I can imagine the days when cavemen first invented fire they sold it as a way to make cave women strip! But we are not cavemen any more!]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-4702" title="Booth-Babes" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/Booth-Babes.jpg" alt="booth babes" width="500" height="375" /></p>
<p>Ask any marketing consultant and they will tell you that sex sells, in fact I can imagine the days when cavemen first invented fire they sold it as a way to make cave women warm enough to strip! But we are not cavemen any more so is it time we looked at more intelligent forms of marketing?</p>
<p>The main reason I ask this question is recently there have been more and more people in the <a title="SEO Manchester" href="http://www.seo-creative.co.uk">SEO</a>, computing and technology industry calling out the need for booth babes at conferences and asking how this reflects on women in the industry.</p>
<p>As an ex model and a SEO I have experienced being the &#8216;booth babe&#8217; as well as the attendee, when I was a struggling university student I welcomed the fact I could make easy money by slapping some make up on and smiling at conferences but how has this impacted the industry as a whole.</p>
<p><img class="aligncenter size-full wp-image-4703" title="no-sex-marketing" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/no-sex-marketing.gif" alt="no sex image" width="280" height="280" /></p>
<h3>Sexualising women in the SEO Industry</h3>
<p>The SEO and Internet industry is predominantly male &#8211; or it is men who are more vocal and pro active in self publicity. You can say that because more men are in the industry that using booth babes or sexual images of women as marketing tools is attracting the correct demographic, but is this further alienating other women from entering the industry, and most alarmingly is it making these intelligent young men see all women in the industry as props rather than peers?</p>
<p>Jane Copland was the first female SEO brave enough to speak out about her experiences of <a href="http://janecopland.co.uk/2011/12/women-as-entertainment-in-the-seo-industry/">women as entertainment</a> at conferences where men seem to think that a woman attending is fair game. Since this post more and more women have spoken out about similar experiences and their concern about the way women are used and even the use of booth babes at <a rel="nofollow" href="http://www.forbes.com/sites/women2/2012/01/16/ces-booth-babe-problem-womens-perceived-role-in-technology/">CES</a> last week has re ignited the controversy. As an ex model I also found a few extra doors opening based on looks,  once I came into the SEO industry I was given more opportunities to go  to conferences than my male peers, more client liaison and opportunities to get involved in sales. I knew at the time it was because  they wanted a few girls that were attractive enough and wouldn&#8217;t scare  off the punters and I got to go to the big conferences and see the  speakers so what harm could it do?</p>
<p>The attitudes of men at these conferences were that I  was there purely to be groped and gawped at they didn&#8217;t realise that I  also knew as much, if not more than some of the men. It seems the over use of booth babes has given people some sort of booth babe blindness where they assume any woman in a more male oriented industry is part of the marketing and being paid to be nice to them.</p>
<p>&nbsp;</p>
<h3>Frat boy attitudes</h3>
<p>Conferences and exhibits are for socialising and networking as much as they are for sharing products and knowledge, so a big part of most conferences is the drinks later on. I have no problem with people having a drink after the conference but this coupled with attitudes of women being the decoration means &#8216;frat boy&#8217; and &#8216;stag&#8217; mentality seems to go a bit too far. It comes to the point where women do not always feel comfortable or respected, the fact that one woman had to speak out first shows that women do feel they can&#8217;t talk about this. By not talking about it or pulling people up on it then people get away with it and it continues; and can very often spiral out of control. I&#8217;m all for a bit of fun but we need to remember we are professionals and what would our clients think of our behaviour?</p>
<p>&nbsp;</p>
<h3>Geeks will be geeks</h3>
<p>One of the arguments for the use of women in the industry as marketing tools is that the men in SEO, computing, technology etc are geeks who are stereotypically &#8216;bad&#8217; with women. With <a title="Web Design Manchester" href="http://www.seo-creative.co.uk/creative/web-design/">web design</a> and marketing taking off with so many different routes are we right to label the men in the industry as geeks? I know plenty of men who are as confident and attractive as a sports person and guess what they can hold an intelligent conversation. Does this sound like a man who needs help with women? Of course there are plenty of geeks, some are shy some are confident but it is the geeks that are making money and pushing the economy forward which is the inspiration for terms such as geek chic.</p>
<p>Labeling men as geeks is actually as bad a stereotype as assuming women are for entertainment so there is no excuse for using one to justify the other.</p>
<p>&nbsp;</p>
<h3>Equal Rights</h3>
<p>This is not the place to get into arguments about pay or equality in other areas but women and men have an equal right to be good at their job, there are a lot of good female SEO&#8217;s as there are a lot of good male SEO&#8217;s. It is the individuals skills that make them good at their job, and as long as there is no weight lifting in the internet and technology industries there is no reason why a man would be better than a woman or vice versa.</p>
<p>&nbsp;</p>
<h3>Can Marketing evolve and should it?</h3>
<p>Marketing can encompass many mediums and the only trick that seems to be evident across all platforms and demographics seems to be sex. It appeals to our more basic nature and maybe for the Jeremy Kyle generation it is a quick win that gets results.</p>
<p>However, we are talking about the technology and internet marketing industry I like to think that this area is very fast moving where your knowledge and techniques can be out of date in 6 months. Most people in these industries have degrees or the intelligence to teach themselves, they are open minded to change yet we treat them like neanderthals. Surely the marketing teams targeting our industry at events or conferences can come up with something more appealing than a booth babe?</p>
<p><img class="aligncenter size-full wp-image-4704" title="seo_needs_you" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/seo_needs_you.jpg" alt="SEO needs you" width="185" height="264" /></p>
<h2>SEO needs YOU!</h2>
<p>I know at SEO Creative we are crying out for good individuals to enter the industry so in my opinion if women don&#8217;t feel comfortable in this area we will potentially lose out on the next <a rel="nofollow" href="http://twitter.com/LisaDMyers">Lisa Myers</a>, <a rel="nofollow" href="http://twitter.com/JudithLewis">Judith Lewis</a>, <a rel="nofollow" href="http://twitter.com/seocopy">Gabriella Sannino</a> and many many more. And also lets have a bit of respect for our men in SEO, most of them are intelligent, witty and don&#8217;t need marketers to pay women to be nice to them.</p>
<p>What are your thoughts? Have I missed the point? Do you agree? Am I just glossing over the issues? Let us know in the comments&#8230;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seo-creative.co.uk/internet-marketing/sex-sells-but-at-what-cost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Start your Web Design with a Pen and Paper</title>
		<link>http://www.seo-creative.co.uk/website-design/start-your-web-design-with-a-pen-and-paper/</link>
		<comments>http://www.seo-creative.co.uk/website-design/start-your-web-design-with-a-pen-and-paper/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 11:54:21 +0000</pubDate>
		<dc:creator>Sadie</dc:creator>
				<category><![CDATA[Website Design]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.seo-creative.co.uk/?p=4686</guid>
		<description><![CDATA[<a href="http://www.seo-creative.co.uk/website-design/start-your-web-design-with-a-pen-and-paper/" rel="nofollow"><img align="left" hspace="5" width="150" height="150" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/pen-and-paper-design-150x150.jpg" class="alignleft wp-post-image tfe" alt="pen and paper design" title="pen-and-paper-design" /></a>Website design is a process that changes dramatically from designer to designer but the best designs are born from an old fashioned pen and paper starting point. ]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-4687" title="pen-and-paper-design" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/pen-and-paper-design.jpg" alt="pen and paper design" width="600" height="399" /></p>
<p><a title="Website design Manchester" href="http://www.seo-creative.co.uk">Website design</a> is a process that changes dramatically from designer to designer but the best designs are born from an old fashioned pen and paper starting point.</p>
<p>I started the design process as a graphic designer, this was taught to me very conceptually and a pen and paper was the first point of call. You may criticise this as obviously I would use paper to start as a majority of the time the end product was print, but the first stages of a design and development in <a title="website design Manchester " href="http://www.seo-creative.co.uk/creative/web-design/">web design</a> are much faster when you play around on paper first.</p>
<p>Web designers have come from a number of different back grounds, whether you went to university to study web design, computing, development, multimedia design or maybe you were self taught or learned on the job? If you are a good web designer the way you got to that place doesn&#8217;t matter, it is how you will turn yourself into a great web designer and what approach you use. Our top tip to create amazing designs is to go back to old school design methods such as a pen and paper.</p>
<p><strong>Make design mistakes faster</strong></p>
<p>Using a pen (or pencil) and paper to sketch out initial wire frames, concepts and designs means you can look at what works and what doesn&#8217;t work much faster. You can brainstorm ideas using keywords that will be integrated into the content at a later time to make sure the design fits the content, this style of designing means you can create a really unique and bespoke website that reflects the brand, products and will convert.</p>
<p>Playing around with designs at this stage and brainstorming is a lot faster on paper than it is in photoshop, although you won&#8217;t get the finished design from a sketch you can save a lot of time with the creative idea behind the website concept by working it out before you have turned on your computer.</p>
<p><strong>Designers should still know website development</strong></p>
<p>I came out of university knowing a little <a title="Flash development" href="http://www.seo-creative.co.uk/flash-development/">Flash</a> and HTML but nothing of CSS or any other programming language so my first website designs were very complex to develop and not user friendly. Simple things like font choice meant my approved design would cause headaches for the developers and the end product wouldn&#8217;t work well on a website, although could have created a lovely printed brochure.</p>
<p>I cringe when looking at my first designs for websites and can spot a website designed by a print designer a mile off, so although I think going back to the old fashioned ways of designing are a great start make sure you have a good understanding of the way websites work before starting your design, even learn a bit of coding.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seo-creative.co.uk/website-design/start-your-web-design-with-a-pen-and-paper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New web suffix&#8217;s, Next big.thing?</title>
		<link>http://www.seo-creative.co.uk/news/new-web-suffixs-next-big-thing/</link>
		<comments>http://www.seo-creative.co.uk/news/new-web-suffixs-next-big-thing/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 10:50:17 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[domain suffix's]]></category>
		<category><![CDATA[drink.pepsi]]></category>
		<category><![CDATA[TLD]]></category>
		<category><![CDATA[top level domain]]></category>

		<guid isPermaLink="false">http://www.seo-creative.co.uk/?p=4681</guid>
		<description><![CDATA[<a href="http://www.seo-creative.co.uk/news/new-web-suffixs-next-big-thing/" rel="nofollow"><img align="left" hspace="5" width="150" height="150" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/0626-1-150x150.jpg" class="alignleft tfe wp-post-image" alt="top-level-domain" title="top-level-domain" /></a>New top level domains set to be seen in 2013 following an 8 month review process from Icann. At a cost of £119,00 for any suffix, is it worth it?]]></description>
			<content:encoded><![CDATA[<p>As of tomorrow, Thursday 12th January 2012, anybody will be able to register any domain suffix they want for £119,00. Since the launch of the dot com address in 1985 the biggest suffix&#8217;s launched have been country suffix&#8217;s. This was up until last year when .xxx was opened and boasts 250,000 registered domains since April. </p>
<p>There has already been a lot of interest in these top level domains (TLD) by pepsi, who are allegedly looking at buying .pepsi so they can run their drink.pepsi campaign. Along with others Boris Johnson, the mayor of London, is said the town hall has the intention of buying .london. Cities such as New York, Paris, Sydney, Berlin and Rome are also looking at purchasing the according TLD. </p>
<p>All applicants have until the 12th April 2012 to sign up before undergoing an 8 month evaluation process, the first new TLD&#8217;s expect to be seen in 2013. The evaluation process is claimed to consist of a grueling 50 questions from Icann, which has been used to deter fraudulent buyers purchasing large organisation domains, such as &#8216;.cocacola&#8217;. Over 40 of the worlds largest organisations, such as The coca-cola company, have already expressed their concerns about the TLD. Concerns include cost of internet expansions, possibility of confusing customers and increasing the risk of internet fraud.  </p>
<p>Having specific domain suffix&#8217;s we here at SEO Creative could come up with some great addresses for <a href="http://www.seo-creative.co.uk/creative/web-design/">Web Design</a> and <a href="http://www.seo-creative.co.uk">SEO Manchester</a>, such as seo.creative, webdesign.seocreative and seo.manchester. </p>
<p>Can anybody else come up with some good ones?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seo-creative.co.uk/news/new-web-suffixs-next-big-thing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Social Media for good</title>
		<link>http://www.seo-creative.co.uk/social-media/use-social-media-for-good/</link>
		<comments>http://www.seo-creative.co.uk/social-media/use-social-media-for-good/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 09:17:50 +0000</pubDate>
		<dc:creator>Sadie</dc:creator>
				<category><![CDATA[Social media]]></category>
		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://www.seo-creative.co.uk/?p=4661</guid>
		<description><![CDATA[<a href="http://www.seo-creative.co.uk/social-media/use-social-media-for-good/" rel="nofollow"><img align="left" hspace="5" width="150" height="150" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/social-media-management-150x150.jpg" class="alignleft wp-post-image tfe" alt="" title="social-media-management" /></a>Social Media has been constructive in giving the masses a voice, when once big companies looked to advertise and inform the masses now every public move is open to discussion. ]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-4662" title="social-media-management" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/social-media-management.jpg" alt="" width="618" height="165" /></p>
<p>Social Media has been constructive in giving the masses a voice, when once big companies looked to advertise and inform the masses now every public move is open to discussion. In some ways this is excellent for the public and for companies but it has also born an attitude of negativity and hate.</p>
<p>At <a title="SEO Creative" href="http://www.seo-creative.co.uk">SEO Creative</a> we work in the online industry which allows us access to companies and we are able to see both sides of the situation a lot of the time, but even without having this insight it is quite clear that social media is being used to spread negativity and in some cases bullying. <a title="Social media management" href="http://www.seo-creative.co.uk/seo-online-marketing/social-media-management/">Social media</a> incorporates platforms such as Facebook, Twitter and other consumer populated sites such as flickr, it also includes profile driven sites like dating sites and forums and the biggest one many forget is blogging and commenting.</p>
<h2>The dark side of social media</h2>
<p><img class="aligncenter size-full wp-image-4667" title="dark_side_social_media" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/dark_side_social_media.jpg" alt="dark side of social media" width="594" height="446" /></p>
<h3>Social Media Haters</h3>
<p>Social media gives people a voice, this is often very good but in some situations it can get out of control and spread ideas that are not fully researched or understood adding confusion. A good example of this was last years riots when Twitter and the blackberry network were used to coordinate <a title="Manchester Riots: Is social media to blame?" href="http://www.seo-creative.co.uk/manchester-seo/manchester-riots-is-social-media-to-blame/">riots</a> in the UK&#8217;s major cities. Other examples are Facebook groups set up against individuals or companies, last November many people used Facebook to spread the message that the &#8216;Body Shop&#8217; were not allowing staff to wear poppies, this message was originally spread via a hate filled profile update supporting British troops and criticising the Body shop. This led to a Facebook group being set up against the company and in reality the company had not banned staff from wearing poppies but were still faced with abuse from the public.</p>
<p>We have also seen a rise in nasty comments on peoples blogs, some are pointless and rude, not spam but just very angry people wanting to vent and blogging leaves you open to this.</p>
<h3>Social Media Bullies</h3>
<p>User generated content is becoming more and more popular but sharing our opinions and having an online presence can make us vulnerable. Facebook is often used to bully or publicly humiliate people; this may not always be intentional and seen as a laugh, but this is cyber bullying and is often more damaging to the recipient than bullying in the workplace or school yard. Forums have an equally bad reputation online especially certain Mums forums where a number of participants gang up on an individual poster. They may not see it that way but if you look through the comment threads you can see some very aggressive language that is there in writing for the poster to read and re-read.</p>
<h2>The good side of social media</h2>
<p><img class="aligncenter size-full wp-image-4669" title="YodaDuel" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/YodaDuel.jpg" alt="yoda good " width="608" height="455" /></p>
<h3>Improved customer service and feedback</h3>
<p>Although social media leaves companies open to criticism, they also allow companies and consumers direct communication. This means bad service can be improved upon much quicker and feedback actually gets seen by the decision makers. Having public comments means brands have to address issues as part of their reputation management. Too many comments online with a bad sentiment can severely effect sales and revenue so addressing these issues should be a priority. Social Media it is not some customer service tele sales person dealing with complaints and putting them in a folder to be addressed eventually, but the bad feedback gets seen by the people who can make changes. This has led to more openness from brands, better communication and more steps to improve products and services.</p>
<h3>Lively Debates and discussions</h3>
<p>Social media allows people all over the world to share opinions, information and research. This spread of knowledge is beneficial to people who are using this in a good way and also see that not all of the story is necessarily being told (especially in 140 characters). Lively discussions are good, you can constructively criticise and learn from other people, who in turn will learn from you and your experiences. We are not confined to our immediate surroundings when discussing politics or human nature &#8211; or just Eastenders or Coronation Street! By getting other peoples opinions it broadens our own knowledge.</p>
<h2>Let the good triumph</h2>
<p><img class="aligncenter size-full wp-image-4672" title="DeathStar_social_media" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/DeathStar_social_media.jpg" alt="Social Media Wars" width="613" height="613" /></p>
<h3>What we can do to make sure we are using social media for good</h3>
<p>Social Media has brought us a lot of opportunities but also caused a lot of hurt and controversy, and we often forget that writing something online usually means it is in the public domain forever (or a very long time). Be mindful of what you write and how it can be construed. We have all written something on a profile page in a moment of anger or happiness that perhaps shouldn&#8217;t have been shared with everyone. Here are my tips for making the social media world a nicer place:</p>
<ul>
<li><strong>Be constructive</strong> -Debates are good but if you have something negative to say try to be constructive</li>
<li><strong>If you have nothing nice to say, don&#8217;t say anything at all</strong> &#8211; this applies to people who are being nasty with no reason, anger spreads quickly so keep your nasty comments to yourself. If you really need to vent try to do it in a constructive way; if you wrote something online think of how it would look to a jury in court, if you think they would not look favorably on you then should you be writing it?</li>
<li><strong>Be open minded</strong> &#8211; You may be certain you are right but there is always two sides to a story, so listen to other opinions and be open minded. You may still keep your original view but learn a new perspective on it.</li>
<li><strong>Remember written word has no tone</strong> &#8211; If you are being sarcastic or joking then you have to make this clear. Without tone words can be taken literally and even well meaning comments can be taken the wrong way. You could accidentally be upsetting people or open yourself up for abuse. Re-read your comments and if necessary add emotions or amend to make sure your intention is clear.</li>
<li><strong>Agree to disagree</strong> &#8211; Be respectful of other peoples opinions, ideas and beliefs if you really don&#8217;t agree don&#8217;t get into a nasty argument but leave the conversation before it gets out of hand and upsetting, especially on subjects such as religion or politics.</li>
<li><strong>Remember Social Media is not always a reliable source</strong> &#8211; If someone tells you something on the internet it doesn&#8217;t always mean it is true or the full story. You could not cite Twitter as an accurate reference in a dissertation so check facts before making any decisions off the information.</li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seo-creative.co.uk/social-media/use-social-media-for-good/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Manchester SEO Acclaimed Internationally</title>
		<link>http://www.seo-creative.co.uk/manchester-seo/manchester-seo-acclaimed-internationally/</link>
		<comments>http://www.seo-creative.co.uk/manchester-seo/manchester-seo-acclaimed-internationally/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 10:53:25 +0000</pubDate>
		<dc:creator>SEO Creative</dc:creator>
				<category><![CDATA[Manchester SEO]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO Awards]]></category>

		<guid isPermaLink="false">http://www.seo-creative.co.uk/?p=4651</guid>
		<description><![CDATA[<a href="http://www.seo-creative.co.uk/manchester-seo/manchester-seo-acclaimed-internationally/" rel="nofollow"><img align="left" hspace="5" width="150" height="150" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/top_seo_women_2012-150x150.jpg" class="alignleft wp-post-image tfe" alt="top SEO women 2012" title="top_seo_women_2012" /></a>SEO Manchester has the best and brightest talent in the UK,our own Sadie Sherran was nominated internationally as one of the top SEO women in the industry proving Manchester has the best SEO's.]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-4652" title="top_seo_women_2012" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/top_seo_women_2012.jpg" alt="top SEO women 2012" width="443" height="622" /></p>
<p>We have always known that <a title="SEO Manchester" href="http://www.seo-creative.co.uk">SEO Manchester</a> has the best and brightest talent in the UK but after our very own Sadie Sherran was nominated internationally as one of the top SEO women in the industry it was clear Manchester really hosts the best SEO consultants.</p>
<p>We posted a few months ago that our head of <a title="SEO (Search Engine Optimisation)" href="http://www.seo-creative.co.uk/seo-online-marketing/search-engine-optimisation-seo/">SEO</a>, Sadie Sherran had been nominated as one of the <a title="Top 2012 SEO Women Finalists" href="http://www.seo-creative.co.uk/news/2012-top-seo-women-finalists/">top 2012 SEO women</a> in the an international poll of 30 shortlisted. As we celebrated the new year we also celebrated the results of that poll as Sadie came top 5, number 4 in the international poll.</p>
<p>SEO in Manchester has some excellent SEO consultants working on projects for websites all over the UK and internationally and with a such good digital and SEO agencies as well as University support we expect more talent to move &#8216;oop north&#8217; to Manchester.</p>
<p>It is due to the training, creativity and community in Manchester that has meant agencies keep raising the bar with their work and their staff. This growth in the industry has seen more and more Manchester SEO consultants become recognised in UK awards and awards all over the world. It is no longer an industry dominated by Silicon Valley or in the UK, London. Manchester SEO&#8217;s are here to stay and they are getting top results across the board.</p>
<p>To view the results of the top 2012 SEO women, pop over to <a rel="nofollow" title="2012 top SEO women" href="http://level343.com/article_archive/2012/01/02/level343s-2012-top-women-of-seo/">Level 343&#8242;s article</a> and see the bios of other great women in the Industry.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seo-creative.co.uk/manchester-seo/manchester-seo-acclaimed-internationally/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO and how clients can help</title>
		<link>http://www.seo-creative.co.uk/seo/seo-and-how-clients-can-help/</link>
		<comments>http://www.seo-creative.co.uk/seo/seo-and-how-clients-can-help/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 10:21:38 +0000</pubDate>
		<dc:creator>Sadie</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[creative seo]]></category>
		<category><![CDATA[SEO Consultant]]></category>

		<guid isPermaLink="false">http://www.seo-creative.co.uk/?p=4647</guid>
		<description><![CDATA[<a href="http://www.seo-creative.co.uk/seo/seo-and-how-clients-can-help/" rel="nofollow"><img align="left" hspace="5" width="150" height="150" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/seo_client_communication-150x150.png" class="alignleft wp-post-image tfe" alt="SEO client communication" title="seo_client_communication" /></a>When working on a SEO (search Engine Optimisation) project it is important to have good communication with the client, especially on websites that are being updated regularly. ]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-4648" title="seo_client_communication" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/seo_client_communication.png" alt="SEO client communication" width="610" height="428" /></p>
<p>When working on a <a title="SEO Manchester" href="http://www.seo-creative.co.uk">SEO</a> (search Engine Optimisation) project it is important to have good communication with the client, especially on websites that are being updated regularly.</p>
<p>Many clients are keen to get SEO working quicker and there are ways that clients can help the SEO&#8217;s do their job. Recently many clients have come to us with a limited budget, this is a combination of them being new businesses needing to find budgets, online companies needed SEO to make the money in the first place and the economy being unstable. In these cases it is important for clients to get a ROI (return on investment) quickly and may not be able to afford all of the services available. In these cases there are things the client can do to help compliment the work your SEO is doing.</p>
<h2>SEO Content</h2>
<p>SEO Content is important in an SEO campaign, but content that is appealing to the target demographic is also important for conversions. When writing SEO content it is important for the client to give clear instructions on their industry so we can get it right quicker, in some niche industries the client may be better placed to write the content and we will optimise the content afterwards until we have reached a compromise. The longer it takes to get content approved the longer it is till the pages will be primed and give us a good platform for the rest of the SEO work.</p>
<h2>SEO updates to the blog</h2>
<p>We often recommend a <a href="http://www.seo-creative.co.uk/internet-marketing/we-love-blogging/">blog</a> as regular updates are great for keeping content fresh and provide more pages for visitors to land on. If you have a limited budget then clients taking on the blogging is a good option. We offer guidance and support on blogging and often instal plug ins to make SEO friendly blogs as easy as possible. If the client can take on a lot of blogging on the site then this can help the SEO campaign a lot as it keeps the site fresh and gives us time to work on areas the client is not qualified to do, such as <a href="http://www.seo-creative.co.uk/seo-online-marketing/natural-link-building/">natural link building</a>, analysis and coding.</p>
<h2>Let your SEO know when you make changes to the site</h2>
<p>We encourage clients to keep the site fresh by adding content but if you are changing the SEO content you need to let your SEO consultant know as this may have a detrimental effect on your SEO. Any big changes like removing products from an <a title="eCommerce web design Manchester" href="http://www.seo-creative.co.uk/creative/ecommerce-websites/">ecommerce website</a> need to be checked with your SEO agency as if you just delete the page then you will get a 404 error. There are better ways of removing pages but you may need your SEO consultants help with this. Any changes must be discussed with your SEO agency.</p>
<h2>Don&#8217;t copy any content</h2>
<p>This rule goes to any clients who have a certain level of access, if you are updating your blog and just copy and pasting other people blogs you will not be doing your site any favours. Also some clients feel that a second site may give you a double chance of exposure in the search engines and will hire a web design company to make a second site, as the SEO content is working on the first site they then copy this onto the second site without letting their SEO consultant know. Don&#8217;t do this, it will be a waste of money for the second site and can affect the rankings on the first site.</p>
<h2>Give your SEO a chance to get things done</h2>
<p>When you pay for a SEO campaign you expect to see results quickly, it is understandable when investing you can feel frustrated but SEO is a slow process, sometimes you can get lucky and a site can rank within days but there are lots of things that influence this the majority of sites take 3 to 6 months to get sought after positions and even then other factors such as competition need to be taken into consideration. Give your SEO a chance to do their job, don&#8217;t complain after a week that you haven&#8217;t got first page positions yet, a good SEO will be explaining all the processes and any complications. You may be tempted to start playing around with the site if you don&#8217;t think it is working, but by doing this you may be delaying the process further.</p>
<p>At the end of the day good communication with your SEO should eliminate any of these issues and you can work together to get great results, so if you have any worries at all just get on the phone and have a chat with your SEO agency.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seo-creative.co.uk/seo/seo-and-how-clients-can-help/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website Design for SEO</title>
		<link>http://www.seo-creative.co.uk/website-design/website-design-for-seo/</link>
		<comments>http://www.seo-creative.co.uk/website-design/website-design-for-seo/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 09:23:48 +0000</pubDate>
		<dc:creator>Sadie</dc:creator>
				<category><![CDATA[Website Design]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Website Usability]]></category>

		<guid isPermaLink="false">http://www.seo-creative.co.uk/?p=4635</guid>
		<description><![CDATA[<a href="http://www.seo-creative.co.uk/website-design/website-design-for-seo/" rel="nofollow"><img align="left" hspace="5" width="150" height="150" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/website_design_seo_creative-150x150.jpg" class="alignleft wp-post-image tfe" alt="website design seo creative" title="website_design_seo_creative" /></a>Clients come to us with websites to be optimised for search engines, SEO is an ongoing internet marketing campaign but before you start a campaign the pages need to be accessible.]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-4637" title="website_design_seo_creative" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/website_design_seo_creative.jpg" alt="website design seo creative" width="620" height="384" /></p>
<p>Many of our clients come to us with websites that they want optimised for search engines, SEO is an ongoing internet marketing campaign but before you start a campaign the pages need to be accessible to search engine robots. It is much easier if you can incorporate SEO to the <a title="Web design Manchester" href="http://www.seo-creative.co.uk">website design</a>.</p>
<p>We always design and build our websites to be SEO friendly so even when we are not doing a <a title="SEO (Search Engine Optimisation)" href="http://www.seo-creative.co.uk/seo-online-marketing/search-engine-optimisation-seo/">SEO campaign</a> straight away, the site is easily indexed and found by search engines.</p>
<p>Dynamic sites that are easy to update, fast to load and use SEO best practices will sometimes mean that in niche industries you do not need a lot of ongoing SEO work. In more competitive industries it is essential to have a SEO friendly web design. If your site is not easy to crawl then no matter how good the content and how many back links you will struggle to do well in competitive industries, A common example of this is Flash websites, we love Flash at SEO Creative but it has its purposes and for website it is almost invisible to search engines.</p>
<p>If you are getting a new website design or a design re fresh in the next few months then make sure that it is both user friendly so users will want to use it and buy from you, and search engines like it so users will find you. Combining usability and SEO is not difficult as many of the principles are the same and if you use a website designer that designs with SEO in mind then it could save you a lot of money on a SEO campaign and make you money through the site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seo-creative.co.uk/website-design/website-design-for-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Media Calendar</title>
		<link>http://www.seo-creative.co.uk/social-media/social-media-calendar/</link>
		<comments>http://www.seo-creative.co.uk/social-media/social-media-calendar/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 09:08:41 +0000</pubDate>
		<dc:creator>Sadie</dc:creator>
				<category><![CDATA[Social media]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.seo-creative.co.uk/?p=4631</guid>
		<description><![CDATA[<a href="http://www.seo-creative.co.uk/social-media/social-media-calendar/" rel="nofollow"><img align="left" hspace="5" width="150" height="150" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/seo_calendar-150x150.jpg" class="alignleft wp-post-image tfe" alt="seo calendar website design" title="seo_calendar" /></a>At the beginning of the year it is a great time to look at your social media calendar and work out your marketing strategy for the upcoming year.]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-4632" title="seo_calendar" src="http://www.seo-creative.co.uk/wp-content/uploads/2012/01/seo_calendar.jpg" alt="seo calendar website design" width="495" height="371" /></p>
<p>At the beginning of the year it is a great time to look at your social media calendar and work out your marketing strategy for the upcoming year.</p>
<p>Your Social Media calendar can be virtual or ,or my favourite, an actual calendar, this way you can schedule in all the important events in your industry that your social media and SEO campaign should be focussing around. SEO takes a bit of time to take effect so planning in advance means you can start working on ranking for particular things early, beating your competitors.</p>
<p>For example for SEO creative we like to attend <a title="SEO Manchester" href="http://www.seo-creative.co.uk">SEO Manchester</a> events therefore can write up blogs, tweets and get involved in other social media posts around these events. We can plan these events into our social media calender at the beginning of the year and know what is coming up.</p>
<p>We can also look at seasonal trends in our business, such as, in January and April we often find a lot of people set aside budget for new website design, this is often because new budgets have been set or they are using up end of year budget. From having this understanding of our own business we know to be focussing our social media around <a title="Website design" href="http://www.seo-creative.co.uk/creative/web-design/">website design</a> at this time.</p>
<p>By setting out your social media calendar with trends and events it makes planning your social media strategy a lot easier and also free up time for and topical events.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seo-creative.co.uk/social-media/social-media-calendar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

