How to Add a Favicon Using the WordPress Site Icon Feature

WordPress 4.3 introduced a new “Site Icon” feature, which provides a user-friendly interface for adding a favicons to your websites. Icons are also used as app icons on mobile devices. The Site Icon feature can be found by going to Appearance > Customize and selecting the Site Identity option. Then click the Select File button and choose an image in the […]

Applying Background Images Using CSS

A background image can be applied to any element using the following CSS declaration: background-image: url(image name); Shorthand Shorthand background declarations are written as: background: color image repeat attachment position; For example, the following code: p { background-color: #f00; background-image: url(background.gif); background-repeat: no-repeat; background-attachment: fixed; background-position: center; } would be written in shorthand as: p […]

Don’t be a Whore! 10 Tips to help designers avoid being taken advantage of

From GoMediaZine… If you’re freelancing or just starting your own design company, you may be in jeopardy of being a whore. That’s right. Some seemingly sweet client may come along, wine and dine you, bend you over the back of the couch, have their way with you – then dump you like last week’s trash […]

MySQL based transactions using PHP 5.x

I’ve been using database transactions heavily in an application I’m working on and thought it might be a good topic to write about. I started searching for tutorials on the subject and found very few that are of good quality. Hopefully this will enlighten you and provide a better understanding of the subject.