WhatsApp Chat
Send us a message today and we will contact you as soon as possible.

a tags and position:relative not working in IE6

Recently I had the dreaded “but it doesn’t work in IE6” conversation with a client. Usually all it takes to make a simple site work with IE6 is altering the widths of divs (as IE6 seems to treat divs as wider than they are) but this one was a real head scratcher For a start […]

Using ASP to display RSS feed with images from BBC news

I have been puzzling how to retrieve an RSS feed into a page of another webiste using classic ASP (in PHP I can heartily recommend the use of SimplePie) I found some code which allowed me to get the list of items and links using XSLT to transform the retrieved XML – but had to […]

SQL code to find and replace text in a WordPress database

Really useful bit of SQL that allows you to find and replace any bit of text within a WordPress post or page. Very useful for whenn migrating a WordPress database. UPDATE `wp_posts` SET post_content = replace(post_content,’http://www.kineticpulse.co.uk/wordpress25/’ ,’http://www.101datasolutions.co.uk/’); Also the follow SQL statement can be used if the guids of allĀ  the posts are still pointing […]