<?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>Evolution Systems</title>
	<atom:link href="http://evolution-systems.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://evolution-systems.co.uk</link>
	<description>Web Development, Software Development and Linux Consultancy services</description>
	<lastBuildDate>Fri, 08 Aug 2025 09:18:44 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.42</generator>
	<item>
		<title>Test Post for WordPress</title>
		<link>http://evolution-systems.co.uk/2024/08/08/test-post-for-wordpress/</link>
		<comments>http://evolution-systems.co.uk/2024/08/08/test-post-for-wordpress/#comments</comments>
		<pubDate>Thu, 08 Aug 2024 00:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Matthew Jakeman]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://evolution-systems.co.uk/?p=845</guid>
		<description><![CDATA[This is a sample post created to test the basic formatting features of the WordPress CMS. Subheading Level 2 You can use bold text, italic text, and combine both styles. Bullet list item #1 Item with bold emphasis And a link: official WordPress site Step one Step two Step three This content is only for [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This is a sample post created to test the basic formatting features of the WordPress CMS.</p>
<h2>Subheading Level 2</h2>
<p>You can use <strong>bold text</strong>, <em>italic text</em>, and combine <strong><em>both styles</em></strong>.</p>
<ul>
<li>Bullet list item #1</li>
<li>Item with <strong>bold</strong> emphasis</li>
<li>And a link: <a href="https://test.wordpress.org/">official WordPress site</a></li>
</ul>
<ol>
<li>Step one</li>
<li>Step two</li>
<li>Step three</li>
</ol>
<p>This content is only for demonstration purposes. Feel free to edit or delete it.</p>
]]></content:encoded>
			<wfw:commentRss>http://evolution-systems.co.uk/2024/08/08/test-post-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Innovations: Empowering the Mobile Experience</title>
		<link>http://evolution-systems.co.uk/2020/02/11/microsoft-innovations-empowering-the-mobile-experience/</link>
		<comments>http://evolution-systems.co.uk/2020/02/11/microsoft-innovations-empowering-the-mobile-experience/#comments</comments>
		<pubDate>Tue, 11 Feb 2020 15:43:01 +0000</pubDate>
		<dc:creator><![CDATA[Matthew Jakeman]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://evolution-systems.co.uk/?p=841</guid>
		<description><![CDATA[Microsoft is a global technology leader, constantly driving innovation and transforming the digital landscape. With cutting-edge mobile applications and cloud solutions, the company enables users to work, learn, and enjoy entertainment wherever they are. Innovative Solutions for Business and Personal Use Products such as Office 365 and the Azure platform have revolutionized the way both [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Microsoft is a global technology leader, constantly driving innovation and transforming the digital landscape. With cutting-edge mobile applications and cloud solutions, the company enables users to work, learn, and enjoy entertainment wherever they are.</p>
<h2>Innovative Solutions for Business and Personal Use</h2>
<p>Products such as Office 365 and the Azure platform have revolutionized the way both businesses and individuals operate. Microsoft’s mobile solutions provide seamless access to essential tools, ensuring productivity and connectivity on the go.</p>
<h2>Security and Reliability</h2>
<p>Security remains a top priority for Microsoft. Regular updates and advanced protection technologies guarantee that users&#8217; data stays secure, whether they&#8217;re managing business tasks or accessing personal information.</p>
<h2>Discover More</h2>
<p>Committed to making technology accessible for everyone, Microsoft continues to innovate and grow. To explore the latest developments and learn more about their diverse range of products, visit the official website at <a href="https://www.microsoft.com/">Microsoft</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://evolution-systems.co.uk/2020/02/11/microsoft-innovations-empowering-the-mobile-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Openlayers + Bootstrap tiles missing</title>
		<link>http://evolution-systems.co.uk/2014/04/19/openlayers-bootstrap-tiles-missing/</link>
		<comments>http://evolution-systems.co.uk/2014/04/19/openlayers-bootstrap-tiles-missing/#comments</comments>
		<pubDate>Sat, 19 Apr 2014 11:23:40 +0000</pubDate>
		<dc:creator><![CDATA[Matthew Jakeman]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://evolution-systems.co.uk/?p=745</guid>
		<description><![CDATA[I&#8217;ve just implemented a mapping system that uses openlayers for the mapping engine. I am also using twitter bootstrap to help with the CSS for the site. Unfortunately these two together result in only half of the tiles being displayed in the map. This is down to bootstrap setting a global property for the img [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve just implemented a mapping system that uses openlayers for the mapping engine. I am also using twitter bootstrap to help with the CSS for the site.</p>
<p>Unfortunately these two together result in only half of the tiles being displayed in the map. This is down to bootstrap setting a global property for the img tag as follows:</p>
<pre class="brush: css; title: ; notranslate">img { max-width:100%; }</pre>
<p>This can be overcome by overriding this setting for your map as follows (presuming your map has an id of #map)</p>
<pre class="brush: css; title: ; notranslate">.map img { max-width:none; }</pre>
<p>Thanks to <a href="http://www.maurobianchi.it/blog/2012/03/26/openlayers-css-conflict/">this blog post</a> for pointing me in the right direction.</p>
]]></content:encoded>
			<wfw:commentRss>http://evolution-systems.co.uk/2014/04/19/openlayers-bootstrap-tiles-missing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bear Development Ltd</title>
		<link>http://evolution-systems.co.uk/2014/04/18/bear-development-ltd/</link>
		<comments>http://evolution-systems.co.uk/2014/04/18/bear-development-ltd/#comments</comments>
		<pubDate>Fri, 18 Apr 2014 11:43:04 +0000</pubDate>
		<dc:creator><![CDATA[Matthew Jakeman]]></dc:creator>
				<category><![CDATA[Testimonials]]></category>

		<guid isPermaLink="false">http://evolution-systems.co.uk/?p=733</guid>
		<description><![CDATA[Evolution Systems Development and Consultancy provided some highly technical work above and beyond our expectations. The quality of the work provided was simply outstanding. They have an impressive responsiveness, follow up and professionalism. These are attributes that you can&#8217;t often find to such high standards anywhere else. Evolution Systems Development and Consultancy definitely inspires trust and [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Evolution Systems Development and Consultancy provided some highly technical work above and beyond our expectations. The quality of the work provided was simply outstanding. They have an impressive responsiveness, follow up and professionalism.</p>
<p>These are attributes that you can&#8217;t often find to such high standards anywhere else. Evolution Systems Development and Consultancy definitely inspires trust and confidence in their clients and we are looking forward to working with their talented Android team again.</p>
<p><em>Andrew Greaves, Managing Director Bear Development Ltd</em></p>
]]></content:encoded>
			<wfw:commentRss>http://evolution-systems.co.uk/2014/04/18/bear-development-ltd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Codeigniter REST server with Tank auth</title>
		<link>http://evolution-systems.co.uk/2014/04/18/codeigniter-rest-server-with-tank-auth/</link>
		<comments>http://evolution-systems.co.uk/2014/04/18/codeigniter-rest-server-with-tank-auth/#comments</comments>
		<pubDate>Fri, 18 Apr 2014 10:36:07 +0000</pubDate>
		<dc:creator><![CDATA[Matthew Jakeman]]></dc:creator>
				<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[Matts Blog]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://evolution-systems.co.uk/?p=736</guid>
		<description><![CDATA[I&#8217;ve just had the need within codeigniter to integrate basic auth in Phil Sturgeons REST server with the tank auth authentication library. As it turns out it is quite a trivial task. In application/libraries/REST_Controller.php find the following function: And replace it with the following: If you are not auto loading the tank auth library, be sure [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve just had the need within codeigniter to integrate basic auth in <a href="https://github.com/philsturgeon/codeigniter-restserver">Phil Sturgeons REST server</a> with the <a href="http://konyukhov.com/soft/tank_auth/">tank auth authentication library</a>. As it turns out it is quite a trivial task.</p>
<p>In application/libraries/REST_Controller.php find the following function:</p>
<pre class="brush: php; title: ; notranslate">protected function _check_login($username = '', $password = NULL)&lt;/pre&gt;
 {
 if (empty($username))
 {
 return FALSE;
 }

 $auth_source = strtolower($this-&gt;config-&gt;item('auth_source'));

if ($auth_source == 'ldap')
 {
 log_message('debug', 'performing LDAP authentication for $username');
 return $this-&gt;_perform_ldap_auth($username, $password);
 }

$valid_logins = &amp; $this-&gt;config-&gt;item('rest_valid_logins');

if ( ! array_key_exists($username, $valid_logins))
 {
 return FALSE;
 }

// If actually NULL (not empty string) then do not check it
 if ($password !== NULL AND $valid_logins[$username] != $password)
 {
 return FALSE;
 }
 return TRUE;
 }</pre>
<p>And replace it with the following:</p>
<pre class="brush: php; title: ; notranslate">protected function _check_login($username = '', $password = NULL)&lt;/pre&gt;
{
 if (empty($username))
 {
 return FALSE;
 }
 return $this-&gt;tank_auth-&gt;login($username, $password, FALSE, FALSE, TRUE);
 }</pre>
<p>If you are not auto loading the tank auth library, be sure to do that in your constructor as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://evolution-systems.co.uk/2014/04/18/codeigniter-rest-server-with-tank-auth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kiroco wins the Best Innovation Award at The Wearable Technology Conference and Expo 2014</title>
		<link>http://evolution-systems.co.uk/2014/03/26/kiroco-wins-the-best-innovation-award-at-the-wearable-technology-conference-and-expo-2014/</link>
		<comments>http://evolution-systems.co.uk/2014/03/26/kiroco-wins-the-best-innovation-award-at-the-wearable-technology-conference-and-expo-2014/#comments</comments>
		<pubDate>Wed, 26 Mar 2014 12:22:12 +0000</pubDate>
		<dc:creator><![CDATA[Paula Claytonsmith]]></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Awards]]></category>
		<category><![CDATA[Kiroco]]></category>
		<category><![CDATA[NFC]]></category>

		<guid isPermaLink="false">http://evolution-systems.co.uk/?p=710</guid>
		<description><![CDATA[Kiroco wins the Best Innovation Award at The Wearable Technology Conference and Expo 2014. Evolution Systems Development and Consultancy is proud to be the lead software developer for Kiroco’s innovative Touch Jewellery. &#160; Evolution Systems Development and Consultancy is building a growing and strong reputation in providing innovative ‘Proof of concept’ software development for companies. [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><span style="font-size: large;">Kiroco wins the <b>Best Innovation Award</b> at The Wearable Technology Conference and Expo 2014. <b>Evolution Systems Development and Consultancy</b> is proud to be the lead software developer for Kiroco’s innovative Touch Jewellery.</span></p>
<div class="niceyoutube-wrap" id="niceyoutube-wrap1">
        <iframe id="ytplayer1" type="text/html" width="560" height="315"
        src="http://www.youtube.com/embed/pPBQe43VDC4?origin=http://evolution-systems.co.uk" frameborder="0"></iframe>
        </div>
<p>&nbsp;</p>
<p><span style="font-size: medium;">Evolution Systems Development and Consultancy is building a growing and strong reputation in providing innovative ‘Proof of concept’ software development for companies. The company also provides vital day to day support, development and advice to a range of companies about their technology needs including cutting edge development partners as well as smaller community businesses.</span></p>
<p><span style="font-size: medium;">Evolution Systems Development and Consultancy provides a wide range of services including:</span></p>
<ul>
<li><span style="font-size: medium;">Bespoke Software development based around client requirements.</span></li>
<li>
<p lang="en-US"><span style="font-size: medium;">Android Development</span></p>
</li>
<li>
<p lang="en-US"><span style="font-size: medium;">IOS Development</span></p>
</li>
<li>
<p lang="en-US"><span style="font-size: medium;">Cloud based software solutions</span></p>
</li>
<li><span style="font-size: medium;">Software Consultancy and Strategic support</span></li>
</ul>
<p><span style="font-size: medium;">Other services include:</span></p>
<ul>
<li><span style="font-size: medium;">CRM Development</span></li>
<li><span style="font-size: medium;">Website Development</span></li>
</ul>
<p>For more information about any of the above services, enquiries should be made to Matthew Jakeman, Director. He can be contacted on 01524 851 877 or 07718 896 553. Alternatively, you can get in touch using the <a title="Contact" href="http://evolution-systems.co.uk/contact/">Contact form on our website</a>.</p>
<p><span style="font-size: medium;">Press release date: 25<sup>th</sup> March 2014</span></p>
]]></content:encoded>
			<wfw:commentRss>http://evolution-systems.co.uk/2014/03/26/kiroco-wins-the-best-innovation-award-at-the-wearable-technology-conference-and-expo-2014/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Bootstrap Navbar and Multiple Level Dropdowns</title>
		<link>http://evolution-systems.co.uk/2012/06/23/twitter-bootstrap-navbar-and-multiple-level-dropdowns/</link>
		<comments>http://evolution-systems.co.uk/2012/06/23/twitter-bootstrap-navbar-and-multiple-level-dropdowns/#comments</comments>
		<pubDate>Sat, 23 Jun 2012 13:03:15 +0000</pubDate>
		<dc:creator><![CDATA[Matthew Jakeman]]></dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Matts Blog]]></category>

		<guid isPermaLink="false">http://evolution-systems.co.uk/?p=689</guid>
		<description><![CDATA[Twitter bootstrap is a regular addition to many sites I make at the moment. It has some great features and is extremely simple to use. The first drawback I have found with it though is a lack of support for multiple level dropdowns. These can be quite useful on navbar&#8217;s where you have a lot [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Twitter bootstrap is a regular addition to many sites I make at the moment. It has some great features and is extremely simple to use. The first drawback I have found with it though is a lack of support for multiple level dropdowns. These can be quite useful on navbar&#8217;s where you have a lot of options.</p>
<p>Whilst doing a bit of research into this, I came across this discussion on the bootstrap github page:</p>
<p><a href="https://github.com/twitter/bootstrap/issues/424">https://github.com/twitter/bootstrap/issues/424</a></p>
<p>There are a few additions you can include in the bootstrap CSS file to easily enable support for multi level dropdowns. The CSS is shown below:</p>
<pre class="brush: css; title: ; notranslate">

.nav li.dropdown ul.dropdown-menu li:HOVER ul

{

display:block;

position:absolute;

left:100%;

-webkit-border-radius: 3px;

-moz-border-radius: 3px;

border-radius: 3px;

}

&amp;nbsp;

.nav li.dropdown ul.dropdown-menu ul

{

display: none;

float:right;

position: relative;

top: auto;

margin-top: -30px;

}

&amp;nbsp;

.nav li.dropdown ul.dropdown-menu .dropdown-menu::before

{

content: '';

display: inline-block;

border-top: 7px solid transparent;

border-bottom: 7px solid transparent;

border-right:7px solid #CCC;

border-right-color: rgba(0, 0, 0, 0.2);

position: absolute;

top: 9px;

left: -14px;

}

&amp;nbsp;

.nav li.dropdown ul.dropdown-menu .dropdown-menu::after

{

content: '';

display: inline-block;

border-top: 6px solid transparent;

border-bottom: 6px solid transparent;

border-right:6px solid white;

position: absolute;

top: 10px;

left: -12px;

}

</pre>
<p>Once this has been added you can easily place an extra level of dropdown in your HTML like so:</p>
<pre class="brush: xml; title: ; notranslate">

&lt;ul class=&quot;nav&quot;&gt;

&lt;li class=&quot;active&quot;&gt;&lt;a href=&quot;#&quot;&gt;Regular link&lt;/a&gt;&lt;/li&gt;

&lt;li class=&quot;dropdown&quot; id=&quot;menu1&quot;&gt;

&lt;a class=&quot;dropdown-toggle&quot; data-toggle=&quot;dropdown&quot; href=&quot;#menu1&quot;&gt;

Dropdown

&lt;b class=&quot;caret&quot;&gt;&lt;/b&gt;

&lt;/a&gt;

&lt;ul class=&quot;dropdown-menu&quot;&gt;

&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Action&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Another action&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Something else here&lt;/a&gt;&lt;/li&gt;

&lt;li class=&quot;divider&quot;&gt;&lt;/li&gt;

&lt;li&gt;

&lt;a href=&quot;#&quot;&gt;Separated link&lt;/a&gt;

&lt;ul class=&quot;dropdown-menu&quot;&gt;

&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu&lt;/a&gt;&lt;/li&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;/ul&gt;

&amp;nbsp;

</pre>
<p>Thanks to all the guys on that thread who posted solutions to this. It has come in very useful.</p>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">.nav li.dropdown ul.dropdown-menu li:HOVER ul</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">{</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>display:block;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>position:absolute;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>left:100%;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>-webkit-border-radius: 3px;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>-moz-border-radius: 3px;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>border-radius: 3px;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">.nav li.dropdown ul.dropdown-menu ul</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">{</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>display: none;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>float:right;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>position: relative;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>top: auto;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>margin-top: -30px;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">.nav li.dropdown ul.dropdown-menu .dropdown-menu::before</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">{</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">content: &#8221;;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">display: inline-block;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">border-top: 7px solid transparent;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">border-bottom: 7px solid transparent;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">border-right:7px solid #CCC;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">border-right-color: rgba(0, 0, 0, 0.2);</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">position: absolute;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">top: 9px;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">left: -14px;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">.nav li.dropdown ul.dropdown-menu .dropdown-menu::after</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">{</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">content: &#8221;;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">display: inline-block;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">border-top: 6px solid transparent;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">border-bottom: 6px solid transparent;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">border-right:6px solid white;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">position: absolute;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">top: 10px;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">left: -12px;</div>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}.nav li.dropdown ul.dropdown-menu li:HOVER ul&nbsp;</p>
<p>{</p>
<p>display:block;</p>
<p>position:absolute;</p>
<p>left:100%;</p>
<p>-webkit-border-radius: 3px;</p>
<p>-moz-border-radius: 3px;</p>
<p>border-radius: 3px;</p>
<p>}</p>
<p>.nav li.dropdown ul.dropdown-menu ul</p>
<p>{</p>
<p>display: none;</p>
<p>float:right;</p>
<p>position: relative;</p>
<p>top: auto;</p>
<p>margin-top: -30px;</p>
<p>}</p>
<p>.nav li.dropdown ul.dropdown-menu .dropdown-menu::before</p>
<p>{</p>
<p>content: &#8221;;</p>
<p>display: inline-block;</p>
<p>border-top: 7px solid transparent;</p>
<p>border-bottom: 7px solid transparent;</p>
<p>border-right:7px solid #CCC;</p>
<p>border-right-color: rgba(0, 0, 0, 0.2);</p>
<p>position: absolute;</p>
<p>top: 9px;</p>
<p>left: -14px;</p>
<p>}</p>
<p>.nav li.dropdown ul.dropdown-menu .dropdown-menu::after</p>
<p>{</p>
<p>content: &#8221;;</p>
<p>display: inline-block;</p>
<p>border-top: 6px solid transparent;</p>
<p>border-bottom: 6px solid transparent;</p>
<p>border-right:6px solid white;</p>
<p>position: absolute;</p>
<p>top: 10px;</p>
<p>left: -12px;</p>
<p>}</p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://evolution-systems.co.uk/2012/06/23/twitter-bootstrap-navbar-and-multiple-level-dropdowns/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Center Bullet Points On Centered UL</title>
		<link>http://evolution-systems.co.uk/2012/06/20/center-bullet-points-on-centered-ul/</link>
		<comments>http://evolution-systems.co.uk/2012/06/20/center-bullet-points-on-centered-ul/#comments</comments>
		<pubDate>Wed, 20 Jun 2012 11:36:09 +0000</pubDate>
		<dc:creator><![CDATA[Matthew Jakeman]]></dc:creator>
				<category><![CDATA[Matts Blog]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://evolution-systems.co.uk/?p=683</guid>
		<description><![CDATA[If you center an unordered list within any section on an HTML page you might notice that although the text gets centered, the bullet points remain on the left side of the page. There is a quick and easy CSS fix for this:]]></description>
				<content:encoded><![CDATA[<p>If you center an unordered list within any section on an HTML page you might notice that although the text gets centered, the bullet points remain on the left side of the page. There is a quick and easy CSS fix for this:</p>
<pre class="brush: css; title: ; notranslate">

#your_containing_div ul

{

display: inline-block;

text-align:left;

}

</pre>
]]></content:encoded>
			<wfw:commentRss>http://evolution-systems.co.uk/2012/06/20/center-bullet-points-on-centered-ul/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android Development</title>
		<link>http://evolution-systems.co.uk/2012/02/02/android-development/</link>
		<comments>http://evolution-systems.co.uk/2012/02/02/android-development/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 19:51:12 +0000</pubDate>
		<dc:creator><![CDATA[Matthew Jakeman]]></dc:creator>
				<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://evolution-systems.co.uk/?p=666</guid>
		<description><![CDATA[Modern businesses need to take advantage of the rapidly growing and evolving market to get their message and products out to as many people as possible. Evolution Systems are a development company based in Lancaster, UK. We have undertaken a number of android development projects with great success. We can develop a custom android application [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="http://evolution-systems.co.uk/wp-content/uploads/2012/02/android.jpeg"><img class="alignleft size-medium wp-image-662" style="border: 5px solid white;" title="android" alt="android" src="http://evolution-systems.co.uk/wp-content/uploads/2012/02/android-300x199.jpg" width="300" height="199" /></a>Modern businesses need to take advantage of the rapidly growing and evolving market to get their message and products out to as many people as possible. Evolution Systems are a development company based in Lancaster, UK. We have undertaken a number of android development projects with great success.</p>
<p>We can develop a custom android application tailored specifically to your companies needs whether it is aimed at phones, tablets or both. Apps can be stand alone or can interact with any number of web applications and the data stored within them.</p>
<p>If you think your company could benefit from an Evolution Systems bespoke mobile application why not get in touch and see how we can help.</p>
]]></content:encoded>
			<wfw:commentRss>http://evolution-systems.co.uk/2012/02/02/android-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Christians Alive Website Live</title>
		<link>http://evolution-systems.co.uk/2012/01/17/christians-alive-website-live/</link>
		<comments>http://evolution-systems.co.uk/2012/01/17/christians-alive-website-live/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 10:05:14 +0000</pubDate>
		<dc:creator><![CDATA[Matthew Jakeman]]></dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://evolution-systems.co.uk/?p=659</guid>
		<description><![CDATA[The new website for Christians Alive in Lancaster has been set live. It has been fully developed by Evolution Systems and brings together news and events for the Church. The website is up and running at http://www.christians-alive.org.uk/.]]></description>
				<content:encoded><![CDATA[<p>The new website for Christians Alive in Lancaster has been set live. It has been fully developed by Evolution Systems and brings together news and events for the Church. The website is up and running at <a href="http://www.christians-alive.org.uk/">http://www.christians-alive.org.uk/</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://evolution-systems.co.uk/2012/01/17/christians-alive-website-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
