Why don't we show our phone number?
Our aim is to give you the lowest possible prices for our web design services. We don't have expensive call centres, so we can pass on these savings to you - making our cheap web design even cheaper!
CALL NOW: WHERE'S OUR PHONE NUMBER? Available from monday to friday

Search Engine Marketing

Search Engine Marketing (SEM) is a type of Internet Marketing that drives more traffic to your website by website promotion using paid search engine methods. The main SEM method is Pay Per Click (PPC). PPC allows you to advertise using your keywords and you only pay the advertising host each time your advert is clicked. The cost of the click varies depending on the keywords that you wish to advertise for and generally range between £0.01 to £20.00.

For more information on search engine marketing click here.

Web Design Icons

Check out these free high quality web icon sets. They look great for use in future design work and we will probably be using a few on our website too.

Web Design Icons

If you want to see more web icon sets then click here.

Web Designer Freedom

Web Designer Freedom

As a web designer you have the ability to feel complete freedom whilst working. As long as you have access to your laptop, Skype and the internet – you can design professional, creative, bespoke websites for your clients from anywhere in the world. Whether you prefer to be designing a new website template from the office in London or to be building an E-commerce store whilst sitting by the pool in your Florida getaway… the finished product can always be completed to the same high standard.

Does this effect the Web Design quality?

Not at all! If anything it may help to improve your designing due to the diversity in your way of work. Being in the same office week in week out may become a become quite tiresome, so a change of setting could inspire you to work more accurate and effectively. I don’t believe in limiting myself to one way if life… having freedom at work is a very important factor.

Webmasters

A webmaster is someone who controls the ins and outs of your website. They take care of all of the maintenance of the website, including; the structure, the content (text, graphics, design), page names, files, testing, etc. On top of this, the webmaster should also provide web analytics for your website.

Webmasters aren’t designers, they are more likely to have a programming background. They are very technically minded and have a wealth of experience in getting websites to run smooth and effectively.

Why Have A Webmaster?

If you have a webmaster to look after your website then you will be rest assured that you won’t have to spend anytime at all testing or fixing errors. In fact, your only problem will be if you try to get involved in any of your own testing! Webmasters are very territorial and like to be in full control of the websites they are managing.

Inserting Flash

The standard method for embedding a flash file onto your web page using a HTML editor, such as Dreamweaver, is usually as follow:

<script type=”text/javascript”>

AC_FL_RunContent( ‘codebase’,'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0′,’width’,'990′,’height’,'276′,’title’,'Flash Example’,’src’,'file:///C|/Users/harty/Documents/Websites/Cheap Web Design/images/banners/index-offers’,'quality’,'high’,'pluginspage’,'http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash’,'movie’,'file:///C|/Users/harty/Documents/Websites/Cheap Web Design/images/banners/index-offers’ ); //end AC code

</script><noscript><object classid=”clsid:D27CDB6E-AE6D-11cf-96B8-444553540000″ codebase=”http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0″ width=”990″ height=”276″ title=”Flash Example”>

<param name=”movie” value=”file:///C|/Users/harty/Documents/Websites/Cheap Web Design/images/banners/index-offers.swf” />

<param name=”quality” value=”high” />

<embed src=”file:///C|/Users/harty/Documents/Websites/Cheap Web Design/images/banners/index-offers.swf” quality=”high” pluginspage=”http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash” type=”application/x-shockwave-flash” width=”990″ height=”276″></embed>

</object></noscript>

By using this standard method, your flash will work absoluely perfect BUT it wont meet the standards of W3C! When you come to validate your website I’m afraid it wont be compliant due to disagreements with the plugin method above. Dont panic… we have a solution!

Flash Solution

Replace the code above for the following code:

<object type=”application/x-shockwave-flash” data=”/file.swf” width=”142″ height=”91″>

<param name=”movie” value=”/file.swf” /></object>

This plugin method is fully compliant with W3C standards, as well as a lot simpler and lighter in terms of coding space.

Matt Joins Cheap Web Design!

We have a new addition to the Cheap Web Design team called Matt. Matt is an expert web designer and SEO consultant with over 5 years of experience in the industry.

What’s He Gonna Be Doin!

Matt will be involved in all aspects of the company, from designing you the worlds best website and getting it to the top of Google toooo tweeting and making you feel at home with us!  His expertise will include web design, banner design, search engine optimisation, blogging, and most importantly, creating strong relationships with our clients.

Web Design Skills?

These are the web tools which Matt has expert status with; inDesign, Photoshop, Fireworks, Dreamweaver, Flash, Advanced Web Ranking and Link Manager.

We’re very excited to have Matt on board with us and we look forward to sharing our success with him!

jQuery Lavalamp Guide

The jQuery lavalamp navigation is really cool and simple to implement onto your website. Check out our hover buttons above to get a feel for how they look. Just follow the step by step guide below to create your own:

Stage 1: Creating the HTML

Open a blank html document and insert the following code:

<ul class=”lavaLamp”>

<li><a href=”#”>Home</a></li>

<li><a href=”#”>Page 1</a></li>

<li><a href=”#”>Page 2</a></li>

<li><a href=”#”>Page 3</a></li>

</ul>

Stage 2: Inserting the CSS styling

Create a new CSS document and link it from the <head> section of your html sheet e.g. <link href=”stylesheet.css” rel=”stylesheet” type=”text/css” />

/* Styles for the entire LavaLamp menu */

.lavaLamp {

position: relative;

height: 29px; width: 421px;

background: url(”../image/bg.gif”) no-repeat top;

padding: 15px; margin: 10px 0;

overflow: hidden;

}

/* Force the list to flow horizontally */

.lavaLamp li {

float: left;

list-style: none;

}

/* Represents the background of the highlighted menu-item. */

.lavaLamp li.back {

background: url(”../image/lava.gif”) no-repeat right -30px;

width: 9px; height: 30px;

z-index: 8;

position: absolute;

}

.lavaLamp li.back .left {

background: url(”../image/lava.gif”) no-repeat top left;

height: 30px;

margin-right: 9px;

}

/* Styles for each menu-item. */

.lavaLamp li a {

position: relative; overflow: hidden;

text-decoration: none;

text-transform: uppercase;

font: bold 14px arial;

color: #fff; outline: none;

text-align: center;

height: 30px; top: 7px;

z-index: 10; letter-spacing: 0;

float: left; display: block;

margin: auto 10px;

}

Stage Three: Attach the Javascript code

Insert the following code into the <head> section of your html document:

<script type=”text/javascript” src=”scripts/jquery.standard.js”></script>

<script type=”text/javascript” src=”scripts/jquery.easing.js”></script>

<script type=”text/javascript” src=”scripts/jquery.lavalamp.js”></script>

<script type=”text/javascript”>

$(function() { $(”.lavaLamp”).lavaLamp({ fx: “backout”, speed: 700 })});

</script>

Now all you need to do is download the three Javascript files and save them a folder named ‘Scripts’ in the root level of your website. Here are the files; jQuery Standard, jQuery Lavalamp, jQuery Easing. Enjoy!

SEO Services

SEO (Search Engine Optimisation) is now a widely known service to those who want to increase their websites traffic levels. Through effective strategies an SEO developer can boost your website up the ‘natural’ search engine listings, providing more exposure to your target audience.

When searching SEO services for your website you should be looking for a company that you can trust, has proven experience that can be shown to you and of course, offer competitive prices.

The SEO Services Package

Within an SEO package the client can usually expect to receive; a keyword analysis report, on-page and off-page optimisation, regular progress reports and full customer support.

Cheap Web Design SEO

Yes, we offer SEO services here at Cheap Web Design. We have branded our product ‘Cheap SEO’ as we want to provide an affordable solution to smaller businesses and personal clients.

Adding RSS 2.0 Feeds

If you have a website and want to have an RSS feed from your blog or somebody else’s blog or website then follow the guide below. Having an RSS feed will allow you to have automated updates on the latest news, entries or comments etc posted plugged straight to your homepage or landing pages.

Creating Your RSS Feed

Here is a really good step by step guide on how to create your RSS 2.0 feed: RSS 2.0 Feed Tutorial

For information and advice on other ways to create dynamic content for your website contact us and speak to one of our web designers.

Choosing Web Design Examples

If your in a position where you need a website for yourself or maybe your company then you will probably be thinking about approaching a web design company. If so then we would like to help you choose some design examples that you can show to the web designers so that they will have a clear understanding of what your looking for.

How To Pick Web Design Ideas

We have put together some steps for you to follow so that you can pick out some web design ideas and then same them to show the web design company.

  1. Type your main keywords into a search engine and take a look at your competitors websites OR if you already know who your competitors are you can go directly to their website.
  2. Choose the best 5 and note down their URL’s e.g www.designexample.co.uk and then rank them from 1 – 5 (1 being your most favourite).
  3. Make notes of specific sections of anyone of the websites that you really liked and would like to have featured on your website.
  4. Have a think about color schemes and any other extras that you would like on your website.

Now that you have your list and notes you are ready to contact a web design company. When the web designer asks what your looking for you can simply supply them with your list and notes. Easy!

If you would like any assistance choosing your design examples then we at Cheap Web Design will glad to help.