Skip to content
Menu
  • Web Design Business
  • Web design Fundalmentals
City Kitty Design

How To Pick Your Perfect Website Designer – Web Design York

Posted on October 23, 2017


How To Pick Your Perfect Website Designer – Web Design York
http://cheapcheapweb.co.uk/web-design-york/

How to select a web design agency in York

There are dozens of website design agencies in the York area If you want a website designed how do you choose one that offers web design in York that is perfect for you The task isnt easy It gets even harder if you are not a internet guru yourself How are you meant to know what a good website designer looks like What they do Or how much it costs Dont worry help is it hand

This easy guide should help you pick the most suitable website designer in York so you can get the website you want for a fair price

Step 1 Decide What Your Website Is For

You want your website for a reason you need to be clear about what this reason is Perhaps you want to get enquiries via email or phone Maybe you have products that you wish to sell online

For example you website might

Sell school uniforms to parent of local children online
Show a portfolio of photos to couples getting married
Advertise jobs in the local area

Whatever the reason is you need to make sure that you have it clearly defined so that any Web Design in York is done properly

Step 2 Decide The Goals Of Your Website

It is important to have an idea of what you are trying to achieve with your website After all you wouldnt hire a salesman and not brief him on what he is selling and who he is selling it to A website is no different

Your website is an online salesman that should help your business make more money as long as it is setup to target the right people with the right message

Try and be as specific as possible when setting your goals Goals such as selling more stuff or advertising what we do are no good Say exactly what you want it to achieve For example

We want to increase traffic to the website by 20 so we can generate eight more leads per month
We want to update the way the website looks because we need to be more relevant to our customers so that we can raise our rates by 10
We want to write four industryrelated articles per month because we want to help our industry so that we can form two new partnerships per month

Once your web designer in York knows what you are trying to achieve then they can design a website to meet your goals

After all How would you know if your website is a success if you dont know what its goals are

Step 3 Look At Local Competitors Websites

Spend a couple of hours looking at similar websites and see which you like Make a list of the good ones but remember one very important thing when looking around

Does the website have the same purpose and goals as yours

It is tempting to be lured by fancy features or nice graphics However if the site doesnt make you want to find out more about the company then it may not be right for you After all a website is a business tool designed to meet your goals it isnt a fancy online brochure designed to look pretty

Most web designers in York put their company details at the bottom of the page so you should be able to see who designed each site and get in touch with them

Step 4 Get Referrals

Speak to your suppliers and business colleagues and get some recommendations Try and get as much information as possible about how successful their website is Above all Make sure you ask one very important question

Does your website generate customers orders or money

They should know however you would be amazed how many people dont actually know

If they dont know or are unsure then their designer is probably unsuitable Why Well the site hasnt been built to meet any goals It is simply sitting there costing money not making any What is the point of that

Step 5 Check Out Their Web Design Portfolio

Once you have a short list of designers approach them and ask to see examples of their work This might be better done in person so they can provide more details on each of the projects

There are some vital questions you should ask any designer from York or elsewhere

Ask how successful each website is
What is the purpose of each website
What were the goals of the client and how they met them
How many visitors the website gets
How many visitors become customers
How much revenue clients or business each website generates

If the designer has done a good job they should be able to answer these questions If they dont know or are vague then this is a warning sign

Step 6 Find Out How They Will Approach Your Web Design Project

Every professional web designer in York will have a system Get them to explain how their web design system works

Web design in York can be confusing If you have a clear idea of what you are trying to achieve and the goals you are trying to meet then you will have a far greater chance of getting a good website regardless of who designs it

Following the other advice given above on picking a Web Design in York should provide an even better result

Recent Posts

  • How to Hire a Web Designer: 5 Steps
  • 5 Benefits Of Hiring Professional Web Design Companies
  • 8 tips for hiring a Web designer for your business
  • Top 5 Tips for Choosing a Web Designer
  • 7 Qualities of a Great Website

RSS Web Design News

  • Specify Node Versions with .nvmrc August 9, 2022
    I’ve heavily promoted nvm, a Node.js version manager, over the years. Having a tool to manage multiple versions of a language interpreter has been so useful, especially due to the complexity of Node.js package management. One tip I like to give new developers is adding a .nvmrc file to their repositories. The file contents is […]
  • How to Inject a Global with Web Extensions in Manifest V3 August 8, 2022
    For those of you not familiar with the world of web extension development, a storm is brewing with Chrome. Google will stop support for manifest version 2, which is what the vast majority of web extensions use. Manifest version 3 sees many changes but the largest change is moving from persistent background scripts to service […]
  • How Plugins Enhance The WYSIWYG Editing Experience (Sponsored) August 2, 2022
    WYSIWYG editors are one of the core components of any content management system (CMS). A well-coded, feature-filled WYSIWYG HTML editor can distinguish between a CMS users love and one they can’t stand.  While all WYSIWYG editors have a set of basic functionality, the power of plugins enhances the editing experience. Plugins allow WYSIWYG editors to […]
  • JavaScript Event.defaultPrevented July 27, 2022
    Whether you started with the old on_____ property or addEventListener, you know that events drive user experiences in modern JavaScript. If you’ve worked with events, you know that preventDefault() and stopPropagation() are frequently used to handle events. One thing you probably didn’t know: there’s a defaultPrevented proptery on events! Consider the following block of code: […]
  • 7 Ways to Optimize Performance for Your WordPress Site (Sponsored) July 18, 2022
    The vast majority of blogs, news websites, and information websites run on WordPress. While the WordPress developer team and community do their best to ensure wordPress is performant, there are a number of practices you can implement to keep your site blazing fast. Let’s look at some of them! Use Cloudinary WordPress Plugin for Media […]
  • How to Get Extension Manifest Information July 10, 2022
    Working on a web extension can be kinda wild — on one side you’re essentially just coding a website, on the other side you’re limited to what the browser says you can do in the extension execution environment. One change in that environment is coming January 2023 — pushing extensions to move to manifest version […]
  • How to Reverse an Animated GIF June 23, 2022
    Modifying visual media via code has always been a fascination of mine. Probably because I’m not a designer and I tend to stick to what I’m good at. One visual effect I love is seeing video reversed — it provides a sometimes hilarious perspective on a given event. Take this reversed water effect for example: […]
  • CSS :optional May 22, 2022
    A decade ago HTML and CSS added the ability to, at least signal, validation of form fields. The required attribute helped inform users which fields were required, while pattern allowed developers to provide a regular expression to match against an ‘s value. Targeting required fields and validation values with just CSS and HTML was very […]
  • Get a Random Array Item with JavaScript May 9, 2022
    JavaScript Arrays are probably my favorite primitive in JavaScript. You can do all sorts of awesome things with arrays: get unique values, clone them, empty them, etc. What about getting a random value from an array? To get a random item from an array, you can employ Math.random: const arr = [ "one", "two", "three", […]
  • Legacy String Methods for Generating HTML April 26, 2022
    I’m always really excited to see new methods on JavaScript primitives. These additions are acknowledgement that the language needs to evolve and that we’re doing exciting new things. That being said, I somehow just discovered some legacy String methods that you probably shouldn’t use but have existed forever. Let’s take a look! These legacy string […]
©2022 City Kitty Design