Get in touch:
01524 851 877
07718 896 553

Test Post for WordPress

Posted on Aug 08 2024

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.

  1. Step one
  2. Step two
  3. Step three

This content is only for demonstration purposes. Feel free to edit or delete it.

Microsoft Innovations: Empowering the Mobile Experience

Posted on Feb 11 2020

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 businesses and individuals operate. Microsoft’s mobile solutions provide seamless access to essential tools, ensuring productivity and connectivity on the go.

Security and Reliability

Security remains a top priority for Microsoft. Regular updates and advanced protection technologies guarantee that users’ data stays secure, whether they’re managing business tasks or accessing personal information.

Discover More

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 Microsoft.

Openlayers + Bootstrap tiles missing

Posted on Apr 19 2014

I’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 tag as follows:

img { max-width:100%; }

This can be overcome by overriding this setting for your map as follows (presuming your map has an id of #map)

.map img { max-width:none; }

Thanks to this blog post for pointing me in the right direction.