Creating a Grid in Adobe Illustrator CS3
Whenever I start a project, I like to work with a grid layout to help me place all the elements I need into proper alignment. Most sites work around a…
Whenever I start a project, I like to work with a grid layout to help me place all the elements I need into proper alignment. Most sites work around a…
If you store files or images in a folder called “images”, and people enter www.yoursite.com/images as a URL, they will see a list of all the files you have in…
If you are developing a WordPress plugin, one of the first things I would suggest is adding a “Settings” link directly on the plugins page. This makes it easier for…
Creating a page list in WordPress is super easy. All it takes is one function call: <?php wp_list_pages(); ?>. The only problem with the list is if you have sub-pages…
While developing a site for a client, I needed to figure out a way to convert certain text elements into images. I had no clue how to do this but…
I know that the way most people treat multiple forms on one page is to have each form post to another PHP file where the form is validated, its information…
Wouldn’t you like to be able to display the actual search term entered by your user on the search results’ page? Good thing there is a very simple way in…
I was creating a drop down menu for the categories in my Magazine Basic theme and I came across something that started to annoy me a bit. When you hover…
I have already mentioned a few ways to do this but I have discovered a few problems with my old code. I have improved this one quite a bit so…
I have gone into this code and really cleaned it up to make it work properly with WordPress installs that are in subdirectories or wherever. I have also added a…