On 10 Jul, 2014
By
IT Support With
Comments Off on Apple ID Temporarily Locked
WARNING!!! If you receive an email with the subject Apple ID Temporarily Locked, please DO NOT DO ANYTHING! This is a scam trying to gather your login details. The link will redirect you to authenticateicloud.co.uk or authenticateicloud.com which are phishing websites. Apple…
On 4 Jul, 2014
By
IT Support With
Comments Off on Table cell with two colour background – HTML & CSS – no script
Having a hard time creating a table cell with two colour background using only HTML & CSS and no script? Here is an example that should sort you out… The HTML <table> <tr> <td>cell 1</td> <td>cell 2</td> </tr> <tr> <td>cell 3</td>…
On 30 May, 2014
By
IT Support With
Comments Off on Loop through custom post type in WordPress
I’ve recently been working on a website where I had to loop through custom post type in WordPress. Wordpress custom post types are very powerful, and yet very easy to setup. You can use them for sliders, products, testimonials, case…
On 17 Jan, 2014
By
IT Support With
Comments Off on WordPress Popular Posts issue with W3TC
I’ve installed the plug-in WordPress Popular Post a long time ago on my design inspiration blog: HautStyle. I found that the plug-in was great for my needs, easy to use, flexible in terms on design; basically it ticked all the…
On 11 Dec, 2013
By
IT Support With
Comments Off on How to wrap long email address using css
Check the code below to learn how to wrap long email address using css. Every now and then I encounter this problem when building a website, long URLs or long email addresses spill over their container (sometimes breaking the whole layout)…
On 3 Dec, 2013
By
IT Support With
Comments Off on Facebook ask a question gone
Facebook has recently removed the “ask a question” feature on pages. Yeap, Facebook ask a question gone! The feature is still available on personal account but has been removed from the “business” pages. We can only assume Facebook is working…
On 25 Oct, 2013
By
IT Support With
Comments Off on input-append and input-prepend with input-block-level – Bootstrap 2.3.2 – form-horizontal
If you’re looking for a solution to display input-append and input-prepend with input-block-level in Twitter Bootstrap 2.3.2, look no further. In this example we are using Bootstrap form-horizontal. See below the layout you should get by default using Bootstrap form-horizontal….
On 24 Oct, 2013
By
IT Support With
Comments Off on How to create an animated gif from a video clip
You are probably reading this page because you saw lots of funny animated gif of cats (like the one above)… and now you want to know how to create one yourself. But please don’t create another animated gif of a…
On 24 Oct, 2013
By
IT Support With
Comments Off on Animated GIF is not animated in blog post – WordPress
You’ve found a funny animated gif of a cat falling of a table, or scaring a dog… and you would like to share it in a blog post. You go to your blog, create a new post, import the media,…
On 5 Aug, 2013
By
IT Support With
Comments Off on Cross-browser CSS box-shadow
Yet another quick CSS reminder, this time for cross-browser CSS box-shadow: .box-shadow { -moz-box-shadow: 10px 10px 10px #000; /* Firefox */ -webkit-box-shadow: 10px 10px 10px #000; /* Safari, Chrome */ box-shadow: 10px 10px 10px #000; /* CSS3 */ } However, all modern browsers now support box-shadow. So if you are using up to date version of Firefox, Safari or Chrome, it’s enough to…