<?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>Multi Media Monsters</title>
	<atom:link href="http://multimediamonsters.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://multimediamonsters.com</link>
	<description>Web and Video Experts Belfast</description>
	<lastBuildDate>Thu, 16 May 2013 07:57:07 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>WordPress Tutorial &#8211; Add widget area to template</title>
		<link>http://multimediamonsters.com/2013/05/wordpress-tutorial-add-widget-area-to-template/</link>
		<comments>http://multimediamonsters.com/2013/05/wordpress-tutorial-add-widget-area-to-template/#comments</comments>
		<pubDate>Tue, 07 May 2013 13:06:41 +0000</pubDate>
		<dc:creator>Bill G</dc:creator>
				<category><![CDATA[Latest]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[Tutorials and Help]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://multimediamonsters.com/?p=1641</guid>
		<description><![CDATA[How to add custom widget areas to Wordpress theme template. Hard code widget areas Wordpress. Add new widget to Wordpress PHP. Tutorial, help, tricks and tips]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1645" alt="Wordpress add custom widget tutorial" src="http://multimediamonsters.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-19.49.24.png" width="300" height="210" /></p>
<p>This tutorial will show you how to add a custom widget area to anywhere in your WordPress theme template. The widget area can be added to anywhere, your header, footer, sidebar or even into a new page template. This can give your &#8216;end user&#8217; clients are far better feel of control over their websites content because widgets are easy to add, edit and update.</p>
<p><center><strong>PLEASE BACK UP YOUR WORDPRESS THEME BEFORE EDITING ANY PHP FILES,</strong> just incase&#8230;</center>&nbsp;</p>
<h3>Step 1 &#8211; Add this chunk of code to your functions.php</h3>
<p><img class="alignright size-full wp-image-1643" alt="Wordpress custom widget tutorial" src="http://multimediamonsters.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-19.46.44.png" width="302" height="124" /></p>
<p>Below is a chunk of code that tells WordPress that you want to register a new widget area for your website. It needs to be pasted into your <strong>functions.php</strong> file. You can find this by logging into your WordPress dashboard, then clicking on Appearance, then click Editor, then select functions.php. If you do not have any of these options in your theme it is most likely that your theme developer / web designer has blocked your from accessing them, so please contact them with further questions.</p>
<div id="code-block">
<code><br />
if (function_exists('register_sidebar')) {<br />
register_sidebar(array(<br />
'name' =&gt; 'Extra Widgets',<br />
'id' =&gt; 'extra-widgets',<br />
'description' =&gt; 'The extra widgets for your website.',<br />
'before_widget' =&gt; '&lt;div id="%1$s" class="widget %2$s"&gt;',<br />
'after_widget' =&gt; '&lt;/div&gt;',<br />
'before_title' =&gt; '&lt;h2&gt;',<br />
'after_title' =&gt; '&lt;/h2&gt;'<br />
));<br />
}<br />
</code>
</div>
<p>Now WordPress will add a new Widget area called Extra Widgets. This is because as you can see in the code above, I gave it the &#8216;name&#8217; Extra Widgets. If I had called the &#8216;name&#8217; value &#8216;Header Widget&#8217; for example, then I would have a widget area called Header Widget, in my WordPress widget control panel. Wow thats a lot of widgets in a sentence!</p>
<p><strong>IMPORTANT NOTE!</strong><br />
This code can be copied and pasted into your functions.php as many times as you want, to make <strong>as many widget areas as you like</strong>. Be sure to change the <strong>&#8216;name&#8217;</strong>, <strong>&#8216;id&#8217;</strong> and <strong>&#8216;description&#8217;</strong> for each widget area.</p>
<p>&nbsp;</p>
<h3>Step 2 &#8211; Call up the widget in your theme template php files</h3>
<p>Now you need to tell Worpdress where you want these widgets to appear. This can be slightly more tricky and may require you to have some knowledge of HTML to edit the necessary code and some CSS skills to make the widgets you have entered look pretty. But best of luck and if you get stuck feel free to ask me any questions in the comment box below. Remember <strong>always back up theme files before editing</strong>, especially when editing your PHP files, one out of place character can crash the back and front end of your website.</p>
<p>Enter this code into your theme files (e.g. page.php, single.php, header.php, footer.php)</p>
<div id="code-block">
<code><br />
&lt;ul&gt;&lt;?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('Extra Widgets')) :</p>
<p>endif; ?&gt;&lt;/ul&gt;<br />
</code>
</div>
<p>Notice the <strong>&#8216;name&#8217;</strong> value from the first block of code <strong>matches</strong> the <strong>!dynamic_sidebar value</strong>. This is very important and if you change the &#8216;name&#8217; for a new widget area, make sure it matches on this line of code, where you want to call it up. Also notice that I have <strong>wrapped the PHP call up code in a &lt;ul&gt; tag</strong>. This is because each of the widgets you add to the widget area is outputted as a list item &lt;li&gt;. I decided it would be better for code semantics if the list items were wrapped in and unordered list tag. Let me know if you agree in the comments box below.</p>
<p>&nbsp;</p>
<h3>Step 3 &#8211; Add new widgets</h3>
<p><img class="alignright size-full wp-image-1674" alt="Wordpress custom widget area tutorial" src="http://multimediamonsters.com/wp-content/uploads/2013/05/wordpress-logo.jpg" width="201" height="201" />Now for the fun part, adding those widgets. Incase your new to WordPress widgets are extra functions that you can bring to your site quickly and easily via downloadable plugins. Need to a form to capture email addresses? There is a plugin widget for it. Need a slideshow to show off your work? There is a plugin widget for it. Just about any function you can think of? There is a plugin widget for it. It is the beauty of Worpdress, via la WordPress, I love it.</p>
<p>Hope you enjoyed my tutorial, if you have any questions or comments please send them to me via the contact box below. Thanks for reading, please feel free to share this via the social share icons.</p>
<div id="contact-chunk">
<h4>I COULD USE SOME HELP</h4>
<p><a class="big-link" title="Contact Us" href="http://multimediamonsters.com/contact-us/">Contact Multimedia Monsters</a></p>
<p>If this service is something that you are interested in then please do not hesitate to call me. My name is Bill Gilmore and I will be happy to hear from you</p>
<p>Call Bill on <a class="big-link" title="Contact Us" href="http://multimediamonsters.com/contact-us/">075100 28821</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://multimediamonsters.com/2013/05/wordpress-tutorial-add-widget-area-to-template/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Web design Belfast &#8211; Creative Learning Centre</title>
		<link>http://multimediamonsters.com/2013/04/web-design-belfast-creative-learning-centre/</link>
		<comments>http://multimediamonsters.com/2013/04/web-design-belfast-creative-learning-centre/#comments</comments>
		<pubDate>Tue, 02 Apr 2013 12:16:48 +0000</pubDate>
		<dc:creator>Bill G</dc:creator>
				<category><![CDATA[Latest]]></category>
		<category><![CDATA[professional projects]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Belfast]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://multimediamonsters.com/?p=1536</guid>
		<description><![CDATA[This web design project was completed for the Creative Learning Centres in Belfast NI. The website showcases the talents of one of Belfast's best web designers]]></description>
				<content:encoded><![CDATA[<p>This website was built for the Creative Learning Centres (CLC) of Northern Ireland, and more specifically <a href="http://studio-on.org.uk/" title="Studio On Creative Learning Centre" target="_blank">Studio ON</a> Belfast and their Creative Classrooms project. It was made to showcase the video resources that were put together to help inspire young creative minds across NI. The videos were shot a couple of years ago by what would become the Multi Media Monsters <a href="http://multimediamonsters.com/services/video-production/" title="video production service">film production</a> team. Another point of interest, keep an eye out for yours truly, giving my pointers and advice to the creative minds of tomorrow. I&#8217;m a proud member of the CLC family (<a href="http://futureclassrooms.org/" title="Future Classrooms 2013" target="_blank">Future Classrooms 2013</a> was a huge success, it was great to be there).</p>
<p style="margin-left:40px;"><a href="http://www.creative-classrooms.com/" target="blank" title="Link to Creative Classrooms but come back soon" class="big-link">LINK TO CREATIVE CLASSROOMS</a><Br>(Just close the new window to find your way back.)</p>
<p><Br></p>
<div id="single-website">
<h4>Website Features</h4>
<p><img src="http://multimediamonsters.com/wp-content/uploads/2013/04/web_design_belfast_ni.jpg" alt="web-design-Belfast_NI"></p>
<ul>
<li>Content management system</li>
<li>Eye catching design</li>
<li>Video content</li>
<li>Contact form</li>
<li>Downloadable content</li>
<li>Search engine optimisation</li>
</ul>
<p>Not 100% sure about any of that stuff? Dont worry, just ask us <a href="http://multimediamonsters.com/whats-this/" title="Whats this?" target="_blank">whats this?</a> Knowledge is power.</p>
</div>
<p><Br><br />
<img src="http://multimediamonsters.com/wp-content/uploads/2013/04/web-design-belfast-graphic.jpg" alt="web design Belfast NI graphic" width="200" height="180" class="alignright size-full wp-image-1550" />
<p>One of my favourite things about this website is its bold &#8216;in your face&#8217; design. When I had a look at the booklets that had been created by Studio ON&#8217;s staff, I knew this was an opportunity for a web design that had a little more life and colour to it. Using the bold images in the header and footer (on every page) with an unimposing background colour was a perfect mix. I&#8217;m really happy with how it turned out.</p>
<p><Br><br />
<img src="http://multimediamonsters.com/wp-content/uploads/2013/04/web-design-belfast-ni-nav.jpg" alt="web design Belfast NI nav bar" width="673" height="42" class="alignnone size-full wp-image-1554" /></p>
<p>Another feature of this web design project that I really like is the navigation bar. The nav looks almost metallic, with a slight shine on it. I also particularly like the home icon that links back to the home page. The colours are inverted for a rollover effect which shows how chunky and accessible the buttons are.</p>
<p><Br><br />
<img src="http://multimediamonsters.com/wp-content/uploads/2013/04/web-design-belfast-header.jpg" alt="web design Belfast NI header image" width="680" height="182" class="alignnone size-full wp-image-1558" /></p>
<p>Another great feature of this web design is the header images on each page of the website. After talking with the client he asked me would it be possible to have a large header image on each page instead of a slider only on the front page. This seemed like a great design feature for the website, in the interest of making the website as user friendly as possible I coded the page template to use the &#8216;Featured Image&#8217; functionality to allow easy upload of a header image for each page (one for the WordPress fans).</p>
<p><Br><br />
<img src="http://multimediamonsters.com/wp-content/uploads/2013/04/web-design-Belfast-ni-sticker-link.jpg" alt="web design Belfast NI sticker link" width="220" height="220" class="alignright size-full wp-image-1561" />
<p>The last feature of this web design I would like to bring to your attention is the sticker link in the top right of the header. It links to the downloadable PDF content page. From this page teachers can download the educational resources to go with the video content. The client felt there was too many links in the navigation bar to add &#8216;Downloads PDF&#8217; so I came up with the creative solution of using this sticker image link and I think its a great feature of the website</p>
<p><Br></p>
<p>Overall this web design project worked out perfectly. I had fun working on a quirky eye catching website, and most importantly the client was over the moon, telling me recently that <em>&#8220;We have received nothing but good feedback about the site&#8221;</em>. Stay tuned as I am just waiting on a testimonial from them to add to the website.</p>
<div id="contact-chunk">
<h4>I WANT ONE!</h4>
<p><a href="http://multimediamonsters.com/contact-us/" title="Contact Us" class="big-link">Contact Multimedia Monsters</a></p>
<p>If this service is something that you are interested in then please do not hesitate to call me. My name is Bill Gilmore and I will be happy to hear from you</p>
<p>Call Bill on <a href="http://multimediamonsters.com/contact-us/" title="Contact Us" class="big-link">075100 28821</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://multimediamonsters.com/2013/04/web-design-belfast-creative-learning-centre/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The benefits of Google+ business page</title>
		<link>http://multimediamonsters.com/2013/02/the-benefits-of-google-business-page/</link>
		<comments>http://multimediamonsters.com/2013/02/the-benefits-of-google-business-page/#comments</comments>
		<pubDate>Tue, 26 Feb 2013 13:50:52 +0000</pubDate>
		<dc:creator>Bill G</dc:creator>
				<category><![CDATA[Latest]]></category>
		<category><![CDATA[Tutorials and Help]]></category>
		<category><![CDATA[Useful Websites]]></category>
		<category><![CDATA[web news]]></category>
		<category><![CDATA[advice]]></category>
		<category><![CDATA[Belfast]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://multimediamonsters.com/?p=1454</guid>
		<description><![CDATA[So you have opened a facebook account for your business, you have even opened a Twitter account for your business, you might even have a LinkedIn account linked with your business&#8230; Today I ask the question on everyones lips&#8230; Do I really need a Google+ business page for my business?&#8230; The answer my friends is [...]]]></description>
				<content:encoded><![CDATA[<p>So you have opened a facebook account for your business, you have even opened a Twitter account for your business, you might even have a LinkedIn account linked with your business&#8230;</p>
<p>Today I ask the question on everyones lips&#8230;</p>
<blockquote>
<p>Do I really need a Google+ business page for my business?&#8230;</p>
<p>The answer my friends is <strong>YES!</strong> Let me tell you why&#8230;</p>
</blockquote>
<h3>Putting you on the map</h3>
<p><img src="http://multimediamonsters.com/wp-content/uploads/2013/02/google-places-logo.jpeg" alt="web design Belfast Google help" width="210" height="160" class="alignright size-full wp-image-1464" />
<p>Firstly it gives your business a listing on <a href="http://www.google.com/placesforbusiness" title="Google Places For Business" target="_blank">Google Places For Business</a>. This means when people search for your business they can find it with a Goolge Maps Listing. This is good for people who want to physically find your place of business, but its also beneficial as it can bring you new customers who have searched for your keywords.</p>
<p>Below is an example of a search result for &#8220;flower delivery Belfast&#8221; you can clearly see a Multi Media Monsters client here in the results <a href="http://www.jilledwardsflorists.co.uk/" title="web design client Belfast" target="_blank">Jill Edwards Florists Belfast</a>. This search result is due to the map listing and not SEO (<a href="http://multimediamonsters.com/whats-this/" title="Ask us, whats this?" target="_blank">what is SEO?</a>) of the website itself.</p>
<p><img src="http://multimediamonsters.com/wp-content/uploads/2013/02/web-design-belfast-google-help.jpg" alt="web design Belfast Google Map Help" width="680" height="364" class="aligncenter size-full wp-image-1471" /></p>
<p><Br><br />
<h3>Boost that SEO</h3>
<p><img src="http://multimediamonsters.com/wp-content/uploads/2013/02/boost.jpg" alt="Web design boost SEO Belfast" width="219" height="164" class="alignright size-full wp-image-1484" />
<p>Your Google+ business listing will give you the best back link that your websites SEO could ask for. As anyone who has dipped their toe in SEO (Search Engine Optimisation) will know, building back links to your website is essential. But getting good results is about quality not quantity. That is one of the big reasons why you should open these social business listings, they give you a great strong back link to your website and continue to do so with every article that you add to the networks. There is no better back link than from Google itself.</p>
<p><Br><br />
<h3>Register with the Google search engine</h3>
<p><img src="http://multimediamonsters.com/wp-content/uploads/2013/02/google_flag.jpg" alt="Web design Help Google Flag" width="195" height="191" class="alignright size-full wp-image-1479" />
<p>When you search on Goolge your not searching the live internet, your searching Goolge&#8217;s index. If you have not registered your business and website with Google there is a possibility it does not even know you exist. Surprisingly this is the case with a lot of clients. By opening a Goolge+ account you have waved a flag to Google search engine to say &#8220;here I am, bring customers to me&#8221;.</p>
<p><Br><br />
<h3>A world of Google services</h3>
<p>Ok so a lot of haters out there are not a fan of this but they obviously don&#8217;t run their own business or deal the media department for a business, but here is the scoop. By opening a Google+ account you have just opened an account that will be used for any of the services Google offer. Some people dont like that, I call it the time saver of the decade, I hate filling in those repetitive forms.</p>
<p>If you should want them, with your Goolge+ log in details can use:</p>
<div id="single-website">
<img src="http://multimediamonsters.com/wp-content/uploads/2013/02/google-plus-logo-icon.jpg" alt="Web design Belfast Google Plus" width="174" height="174" class="alignnone size-full wp-image-1490" style="margin-right:80px;"/></p>
<ul style="margin-left:50px;">
<li>Youtube</li>
<li>Gmail</li>
<li>Google Calendars</li>
<li>Google Drive</li>
<li>Google Adwords</li>
<li>Google Analytics</li>
<li>and so many more great Google services, all with one log in!</li>
</ul>
</div>
<p><Br>
<p>What more can you ask for really? But unfortunately this is an example of a common response when I talk to potentail clients about social networking</p>
<blockquote><p>I&#8217;m already on a lot of social networks, won&#8217;t this just make more work for me?</p>
<p>To which I always replay&#8230;</p>
</blockquote>
<p>Social Networking should not be a time consuming chore. You should be using your website like a news hub, adding a news item to your website should automatically add the content to your Facebook, your Twitter, your Google+ and any other network that your business is a part of. This way with mininal work you are always adding fresh content to your website and your networks. Each news item will not only add an SEO boosting back link to your website it also acts as a bridge pulling people from their social networks onto your website. Therefore the networks are working for you and not vise versa.</p>
<p>If it sounds like our skilled and local team can lend you a hand with your businesses online presence then please contact us via the information provided below. Thank you for reading this article, all relevant comments are warmly welcomed.</p>
<div id="contact-chunk">
<h4>I COULD USE SOME HELP</h4>
<p><a href="http://multimediamonsters.com/contact-us/" title="Contact Us" class="big-link">Contact Multimedia Monsters</a></p>
<p>If this service is something that you are interested in then please do not hesitate to call me. My name is Bill Gilmore and I will be happy to hear from you</p>
<p>Call Bill on <a href="http://multimediamonsters.com/contact-us/" title="Contact Us" class="big-link">075100 28821</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://multimediamonsters.com/2013/02/the-benefits-of-google-business-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Friendly reminder for the self employed</title>
		<link>http://multimediamonsters.com/2013/01/friendly-reminder-for-the-self-employed/</link>
		<comments>http://multimediamonsters.com/2013/01/friendly-reminder-for-the-self-employed/#comments</comments>
		<pubDate>Thu, 17 Jan 2013 09:44:06 +0000</pubDate>
		<dc:creator>Bill G</dc:creator>
				<category><![CDATA[Latest]]></category>
		<category><![CDATA[Tutorials and Help]]></category>
		<category><![CDATA[advice]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[tax]]></category>

		<guid isPermaLink="false">http://multimediamonsters.com/?p=1433</guid>
		<description><![CDATA[This is a friendly reminder for all the self employed. You now have less than two weeks to complete your self employed tax return in the UK. I hope you have been keeping all your receipts. It took me over 3 days to sort through a huge box of receipts, I think my new years [...]]]></description>
				<content:encoded><![CDATA[<p><img src="http://multimediamonsters.com/wp-content/uploads/2013/01/calculator.jpg" alt="calculator" width="183" height="238" class="alignright size-full wp-image-1434" />This is a friendly reminder for all the self employed. You now have less than two weeks to complete your self employed tax return in the UK. I hope you have been keeping all your receipts. It took me over 3 days to sort through a huge box of receipts, I think my new years resolution is to take better care of my books so its not as bad next year.</p>
<p>I am currently working on a guide for going self employed, it will be packed with lots of great tips, tricks and advice. Stay tuned for more great free content from Multi Media Monsters, the most friendly media studio in UK &#038; Ireland.</p>
]]></content:encoded>
			<wfw:commentRss>http://multimediamonsters.com/2013/01/friendly-reminder-for-the-self-employed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pingdom &#8211; Test the loading speed of your website</title>
		<link>http://multimediamonsters.com/2012/12/pingdom-test-the-loading-speed-of-your-website/</link>
		<comments>http://multimediamonsters.com/2012/12/pingdom-test-the-loading-speed-of-your-website/#comments</comments>
		<pubDate>Thu, 06 Dec 2012 13:25:46 +0000</pubDate>
		<dc:creator>Bill G</dc:creator>
				<category><![CDATA[Latest]]></category>
		<category><![CDATA[Useful Websites]]></category>
		<category><![CDATA[web news]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[load speed]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://multimediamonsters.com/?p=1392</guid>
		<description><![CDATA[Ever wanted to test the load time of your website, not only of the site but of individual pages too. Collect real time data of your websites load speed for free]]></description>
				<content:encoded><![CDATA[<p>Another great website to share with you today, good for the web designers among you and also the business owners (who have a website, but I guess thats pretty much everyone). Pingdom is a great free web tool that allows you to test the loading time of your website, this allows you to analyse how much new features of your website are effecting your load speed. This a of course a great resource for WordPress plugin users, as seen in the example below.</p>
<p>I know that my website is a bit heavy on load time, I use a lot of rich images and some pretty complex plugins for my gallery and pop up video player. But when I started using a plugin to comply to the new cookie laws I noticed a definite drop in load speed. I decided to test my loading time with and without the plugin activated, here is the results:<br />
<Br><br />
<img src="http://multimediamonsters.com/wp-content/uploads/2012/12/web-load-speed-design.jpg" alt="web load speed design Belfast" title="Web load speed" width="680" height="219" class="aligncenter size-full wp-image-1394" style="margin-bottom:40px;"/></p>
<p>Ok so its less than a second difference, but I still felt it was a valid reason to try a new plugin for complying with the cookie laws. The plugin I settled on was <a href="http://wordpress.org/extend/plugins/cookie-law-info/" title="find out more about this plugin" target="_blank">Cookie Law Info</a>. I&#8217;m really happy with it and should be uploading a quick review and tutorial about it soon. Back to the matter at hand, if you would like to test your websites load speed just use the link below and bookmark it for later.</p>
<p><a href="http://tools.pingdom.com/fpt/" title="test load speed of your website" class="big-link" target="_blank" style="margin: 50px 0px 50px 70px">Click here to test your websites loading speed</a></p>
<p>In conclusion Pingdom is a great tool for some many people on the web. It allows web site designers and developers to better analyse the loading time of their websites and web apps. It also gives business owners the ability to collect data to present to their web design team about how the site is loading on any page. All in all a big thumbs up to the people at Pingdom, thanks for this great free web tool.</p>
]]></content:encoded>
			<wfw:commentRss>http://multimediamonsters.com/2012/12/pingdom-test-the-loading-speed-of-your-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web design for Belfast software company</title>
		<link>http://multimediamonsters.com/2012/12/web-design-for-belfast-software-company/</link>
		<comments>http://multimediamonsters.com/2012/12/web-design-for-belfast-software-company/#comments</comments>
		<pubDate>Thu, 06 Dec 2012 09:41:23 +0000</pubDate>
		<dc:creator>Bill G</dc:creator>
				<category><![CDATA[Latest]]></category>
		<category><![CDATA[professional projects]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Belfast]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://multimediamonsters.com/?p=1357</guid>
		<description><![CDATA[This web design project was completed for a software and IT company situated in Belfast. As well as this website our team also delivered a promotional video for the company. The design of the web site is as fashionable as it is functional, it really screams profesional software and gives the user a confidence in [...]]]></description>
				<content:encoded><![CDATA[<p>This web design project was completed for a software and IT company situated in Belfast. As well as this website our team also delivered a <a href="http://multimediamonsters.com/2012/10/unipim-promotional-video-production-belfast/" title="UNIPIM – Promotional Video Production" target="_blank">promotional video</a> for the company. The design of the web site is as fashionable as it is functional, it really screams profesional software and gives the user a confidence in the product before they have even experienced it.</p>
<p style="margin-left:40px;"><a href="http://www.unipim.com/" target="blank" title="Link to UNIPIM Software but come back soon" class="big-link">LINK TO UNIPIM SOFTWARE</a><Br>(Just close the new window to find your way back.)</p>
<p><Br></p>
<div id="single-website">
<h4>Website Features</h4>
<p><img src="http://multimediamonsters.com/wp-content/uploads/2012/11/web_design_software_Belfast.jpg" alt="software-web-design-Belfast"></p>
<ul>
<li>Content Management System</li>
<li>Pop up videos</li>
<li>Image Slider</li>
<li>Unique Design</li>
<li>Search Engine Optimisation</li>
<li>News / Blog feed</li>
<li>Social Intergration</li>
</ul>
<p>Not 100% sure about any of that stuff? Dont worry, just ask us <a href="http://multimediamonsters.com/whats-this/" title="Whats this?" target="_blank">whats this?</a> Knowledge is power.</p>
</div>
<p><Br><br />
<img src="http://multimediamonsters.com/wp-content/uploads/2012/11/pop_up_video.jpg" alt="web design pop up video" title="pop_up_video" width="300" height="248" class="alignright size-full wp-image-1364" />
<p>One of the most important features of the website for the client was to have promotional videos pop up on the home page so the users would not have to dig for the video content. This video pop up effect was so beautifully achieved and the quality of the feature was good that it was also installed into our website design. See the video links in our sidebar and footer for an example.</p>
<p><Br><br />
<img src="http://multimediamonsters.com/wp-content/uploads/2012/11/web_design_page_content.jpg" alt="web design page content" title="web_design_page_content" width="300" height="198" class="alignleft size-full wp-image-1368" />
<p>Another great feature of this website is the design of the page content itself. When we took on this project the pages were filled with great information about the software, its features and pricing structure. Our team were able to present this information in an eye catching format that does the software justice.</p>
<p><Br><br />
Over all I am really happy with another great web design job for another very happy customer. Our team always gives 110% for all of our clients, making business succeed in Belfast and Northern Ireland is our number one priority. If we can help any business get a boost with our <a href="http://multimediamonsters.com/services/web-design/" title="Web Design">web design</a> or <a href="http://multimediamonsters.com/services/video-production/" title="Video Production">promotional videos</a> we have achieved our goal. If you are in need of a skilled, friendly and creative web design or video production team in Belfast Northern Ireland then our contact details are below. Thank you.<br />
<Br></p>
<div id="contact-chunk">
<h4>I WANT ONE!</h4>
<p><a href="http://multimediamonsters.com/contact-us/" title="Contact Us" class="big-link">Contact Multimedia Monsters</a></p>
<p>If this service is something that you are interested in then please do not hesitate to call me. My name is Bill Gilmore and I will be happy to hear from you</p>
<p>Call Bill on <a href="http://multimediamonsters.com/contact-us/" title="Contact Us" class="big-link">075100 28821</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://multimediamonsters.com/2012/12/web-design-for-belfast-software-company/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online Video Content &#8211; Photo Slideshow</title>
		<link>http://multimediamonsters.com/2012/11/online-video-content-photo-slideshow/</link>
		<comments>http://multimediamonsters.com/2012/11/online-video-content-photo-slideshow/#comments</comments>
		<pubDate>Fri, 30 Nov 2012 18:42:49 +0000</pubDate>
		<dc:creator>Bill G</dc:creator>
				<category><![CDATA[Latest]]></category>
		<category><![CDATA[professional projects]]></category>
		<category><![CDATA[video production]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://multimediamonsters.com/?p=1380</guid>
		<description><![CDATA[Here is a great example of online video content creation. This video was made for a regular client of ours called Robinson Contracts, it was created to boost the content of the of the website and improve the rank of the site on Google]]></description>
				<content:encoded><![CDATA[<p>Here is a great example of online video content creation. This video was made for a regular client of ours called Robinson Contracts, it was created to boost the content of the of the website and improve the rank of the site on Google. This is all part of an on going search engine optimisation (<a href="http://multimediamonsters.com/whats-this/" title="Whats this?">whats this?</a>) project that will increase the traffic to the website.</p>
<p>If you would like to contact our skilled team about <a href="http://multimediamonsters.com/gallery/product-photography-gallery/" title="Product Photography Gallery">product photography</a>, <a href="http://multimediamonsters.com/gallery/promotional-online-video-content/" title="Online Video Content">online video content</a> production or Search Engine Optimisation please <a href="http://multimediamonsters.com/contact-us/" title="Contact Us">contact us</a>.<br />
<Br><br />
<iframe width="670" height="377" src="http://www.youtube.com/embed/xpIM1KcUmW4?rel=0" frameborder="0" allowfullscreen></iframe><br />
<Br></p>
<div id="contact-chunk">
<h4>I WANT ONE!</h4>
<p><a href="http://multimediamonsters.com/contact-us/" title="Contact Us" class="big-link">Contact Multimedia Monsters</a></p>
<p>If this service is something that you are interested in then please do not hesitate to call me. My name is Bill Gilmore and I will be happy to hear from you</p>
<p>Call Bill on <a href="http://multimediamonsters.com/contact-us/" title="Contact Us" class="big-link">075100 28821</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://multimediamonsters.com/2012/11/online-video-content-photo-slideshow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get your business online from only £30 per month</title>
		<link>http://multimediamonsters.com/2012/11/get-your-business-online-from-only-30-per-month/</link>
		<comments>http://multimediamonsters.com/2012/11/get-your-business-online-from-only-30-per-month/#comments</comments>
		<pubDate>Thu, 15 Nov 2012 11:01:05 +0000</pubDate>
		<dc:creator>Bill G</dc:creator>
				<category><![CDATA[Latest]]></category>
		<category><![CDATA[special offers]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[offer]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://multimediamonsters.com/?p=1345</guid>
		<description><![CDATA[Web design special offer for small businesses in Belfast and Northern Ireland. Get your business online from £30 per month]]></description>
				<content:encoded><![CDATA[<p>Starting a new business, or need an online presence for your existing business? This is the special offer you cant afford to miss. Situated in Belfast our local team have been helping fellow businesses thrive in this time of hardship. We decided to create this new special offer to help our fellow smaller businesses expand with having to make a large financial investment. From as little as £30 per month you too can have a unique website that will allow you to pull in new customers directly from Google and social platforms such as facebook.<br />
<Br><br />
&#8220;What will I get for this £30 a month?&#8221; I hear you cry, well ALL these great features:</p>
<div id="single-website">
<h4>Website Features</h4>
<p><img src="http://multimediamonsters.com/wp-content/uploads/2012/02/SimpleMe-280x300.jpg" alt="Portfolio Web Design Belfast" /></p>
<ul>
<li>Content Management System</li>
<li>Image Slider</li>
<li>Unique Design</li>
<li>Social Integration</li>
<li>Image Gallery</li>
<li>Contact Form</li>
<li>Search Engine Optimization</li>
<li>News Feed / blog</li>
</ul>
<p>Not 100% sure about any of that stuff? Dont worry, just ask us <a href="http://multimediamonsters.com/whats-this/" title="Whats this?" target="_blank">whats this?</a> Knowledge is power.</p>
</div>
<p>Don&#8217;t make your decision right away, first why dont you have a look at some of the great examples of completed web design projects. These vary greatly in design and functionality, but are all based on the perfectly coded WordPress platform.<br />
<a href="http://multimediamonsters.com/services/web-design/news-blog-website/" target="_blank" class="big-link">Click here for example of business portfolio web designs</a><br />
<Br></p>
<h3>Small Print</h3>
<p>Ok so there are a few minor details to work out. This deal is a minimum contract of 18 months. There will be a £100 deposite set up fee. There is no hidden fees, this includes the hosting for the website and the domain name (web address). This service does not include product photography, although this can be organized separately. All work completed will be displayed on our website as promotional material. All completed websites will feature a small link back to our website in the footer. All customers will be joining our ever growing army of previous happy clients (dont worry we will not call you up for duty at any time).<br />
<Br></p>
<div id="contact-chunk">
<h4>I WANT ONE!</h4>
<p><a href="http://multimediamonsters.com/contact-us/" title="Contact Us" class="big-link">Contact Multimedia Monsters</a></p>
<p>If this service is something that you are interested in then please do not hesitate to call me. My name is Bill Gilmore and I will be happy to hear from you</p>
<p>Call Bill on <a href="http://multimediamonsters.com/contact-us/" title="Contact Us" class="big-link">075100 28821</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://multimediamonsters.com/2012/11/get-your-business-online-from-only-30-per-month/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Small business web design from only £40 per month</title>
		<link>http://multimediamonsters.com/2012/11/small-business-web-design-from-only-40-per-month/</link>
		<comments>http://multimediamonsters.com/2012/11/small-business-web-design-from-only-40-per-month/#comments</comments>
		<pubDate>Thu, 15 Nov 2012 10:24:05 +0000</pubDate>
		<dc:creator>Bill G</dc:creator>
				<category><![CDATA[Latest]]></category>
		<category><![CDATA[special offers]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[offer]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://multimediamonsters.com/?p=1334</guid>
		<description><![CDATA[Web design special offer that is perfect from small to medium business. Local web design team in Belfast, Northern Ireland.]]></description>
				<content:encoded><![CDATA[<p>Business in Belfast and Northern Ireland has always been innovative and creative. These days we all know that having a vibrant website is the corner stone of every business. Thankfully we are here to tell you today that your business can compete with the very best online, without the price tag that puts your business into the red. For the last two years we have been delivering bespoke web design projects for small to medium businesses in Belfast and around Northern Ireland. We have a wealth of experience and are dedicated to delivering high quality low cost web design and multi media solutions. Therefore we are proud to announce the start of our, small to medium business web design offer of only £40 per month!<br />
<Br><br />
&#8220;What will I get for this £40 a month?&#8221; I hear you cry, well ALL these great features:</p>
<div id="single-website">
<h4>Website Features</h4>
<p><img src="http://multimediamonsters.com/wp-content/uploads/2012/11/web_design_Belfast_example.jpg" alt="gallery-web-design-belfast"></p>
<ul>
<li>Content Management System</li>
<li>Image Slider</li>
<li>Unique Design</li>
<li>Social Integration</li>
<li>Image Gallery</li>
<li>Contact Form</li>
<li>Search Engine Optimization</li>
<li>News Feed / blog</li>
<li>Staff Training Session</li>
</ul>
<p>Not 100% sure about any of that stuff? Dont worry, just ask us <a href="http://multimediamonsters.com/whats-this/" title="Whats this?" target="_blank">whats this?</a> Knowledge is power.</p>
</div>
<p>Don&#8217;t make your decision right away, first why dont you have a look at some of the great examples of completed web design projects. These vary greatly in design and functionality, but are all based on the perfectly coded WordPress platform.<br />
<a href="http://multimediamonsters.com/services/web-design/business-portfolio/" target="_blank" class="big-link">Click here for example of business portfolio web designs</a><br />
<Br></p>
<h3>Small Print</h3>
<p>Ok so there are a few minor details to work out. This deal is a minimum contract of 18 months. There will be a £150 deposite set up fee. There is no hidden fees, this includes the hosting for the website and the domain name (web address). This service does not include product photography, although this can be organized separately. All work completed will be displayed on our website as promotional material. All completed websites will feature a small link back to our website in the footer. All customers will be joining our ever growing army of previous happy clients (dont worry we will not call you up for duty at any time).<br />
<Br></p>
<div id="contact-chunk">
<h4>I WANT ONE!</h4>
<p><a href="http://multimediamonsters.com/contact-us/" title="Contact Us" class="big-link">Contact Multimedia Monsters</a></p>
<p>If this service is something that you are interested in then please do not hesitate to call me. My name is Bill Gilmore and I will be happy to hear from you</p>
<p>Call Bill on <a href="http://multimediamonsters.com/contact-us/" title="Contact Us" class="big-link">075100 28821</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://multimediamonsters.com/2012/11/small-business-web-design-from-only-40-per-month/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E Commerce website from only £50 per Month</title>
		<link>http://multimediamonsters.com/2012/11/e-commerce-website-from-only-50-per-month/</link>
		<comments>http://multimediamonsters.com/2012/11/e-commerce-website-from-only-50-per-month/#comments</comments>
		<pubDate>Fri, 09 Nov 2012 11:49:07 +0000</pubDate>
		<dc:creator>Bill G</dc:creator>
				<category><![CDATA[Latest]]></category>
		<category><![CDATA[special offers]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[offer]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://multimediamonsters.com/?p=1309</guid>
		<description><![CDATA[E-commerce web design for only £50 per month, only 3 places available so do not hesitate! Team based in Belfast N.I.]]></description>
				<content:encoded><![CDATA[<p>Are you thinking of starting an online business? Do you already sell online but want to give your store a shake up? Then this is the offer for you. We are offering 3 new clients e-commerce websites for only £50 per month. If this model proves successful then we may think about rolling out this offer again but currently this offer is only a trail, and there are only 3 spaces so do not hesitate to contact us if you are interested. Contact details are below.<br />
<Br><br />
&#8220;What will I get for this £50 a month?&#8221; I hear you cry, well ALL these great features:</p>
<div id="single-website">
<h4>Website Features</h4>
<p><img src="http://multimediamonsters.com/wp-content/uploads/2012/11/e-commerce_web_design_example.jpg" alt="e-commerce_web_design_example"></p>
<ul>
<li>Content Management System</li>
<li>E-commerce Solution</li>
<li>Image Slider</li>
<li>Unique Design</li>
<li>Social Integration</li>
<li>Image Gallery</li>
<li>Contact Form</li>
<li>Search Engine Optimization</li>
<li>News Feed / blog</li>
<li>Staff Training Session</li>
</ul>
<p>Not 100% sure about any of that stuff? Dont worry, just ask us <a href="http://multimediamonsters.com/whats-this/" title="Whats this?" target="_blank">whats this?</a> Knowledge is power.</p>
</div>
<p>Don&#8217;t make your decision right away, first why dont you have a look at some of the great examples of completed e-commerce web design projects. These vary greatly in design and functionality, but are all based on the perfectly coded WordPress platform.<br />
<a href="http://multimediamonsters.com/services/web-design/e-commerce-web-design/" target="_blank" class="big-link">Click here for examples of e-commerce web designs</a><br />
<Br></p>
<h3>Small Print</h3>
<p>Ok so there are a few minor details to work out. This deal is a minimum contract of 18 months. There will be a £200 deposite set up fee. This service does not include product photography, although this can be organized separately. Data entry is not included in this price, we will train you how to upload your products, then its up to you to upload them all, but we can offer this service for a small hourly rate. All work completed will be displayed on our website as promotional material. All customers will be joining our ever growing army of previous happy clients (dont worry we will not call you up for duty at any time).<br />
<Br><br />
So there is no time to delay, contact us now if this is something you are considering for your business. As this deal will be going faster than hot sausage rolls.</p>
<div id="contact-chunk">
<h4>I WANT ONE!</h4>
<p><a href="http://multimediamonsters.com/contact-us/" title="Contact Us" class="big-link">Contact Multimedia Monsters</a></p>
<p>If this service is something that you are interested in then please do not hesitate to call me. My name is Bill Gilmore and I will be happy to hear from you</p>
<p>Call Bill on <a href="http://multimediamonsters.com/contact-us/" title="Contact Us" class="big-link">075100 28821</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://multimediamonsters.com/2012/11/e-commerce-website-from-only-50-per-month/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

 Served from: multimediamonsters.com @ 2013-05-22 15:00:19 by W3 Total Cache -->