
Graphic designer since before the Internet. Started with newspaper paste-up; then art director for advertising agency in Reno, NV; and now freelancer designing marketing materials, print-on-demand t-shirt art, websites, and social media graphics.
Similar Posts
UX: Why Users Fill Out Forms Faster With Top Aligned Labels
The way you align your labels with your form fields can affect how easy it is for users to fill out the form. Read full article: http://uxmovement.com/design-articles/faster-with-top-aligned-labels Share this post: Share on X (Twitter) Share on Facebook Share on LinkedIn Share on Email
Magento Ecommerce – Run under PHP 5 on 1and1 Web Hosting
Some hosting providers do not yet provide PHP5 on their servers, opting instead to stay with PHP4 for the time being. As Magento is a PHP5-only application, this can be a barrier for some users. This document outlines a possible workaround for such a scenario. The goal is to install PHP5 as a CGI binary…
30 CSS Selectors You Must Memorize from Tuts Plus
So you learned the base id, class, and descendant selectors – and then called it a day? If so, you’re missing out on an enormous level of flexibility. While many of the selectors mentioned in this article are part of the CSS3 spec, and are, consequently, only available in modern browsers, you owe it to yourself to commit…
WordPress – Change Sidebar Content On Each Page
Option 1: “Per Page Sidebars” WordPress plugin. This plugin allows the creation and display of custom sidebars for each page on your site. You choose which of your current themes sidebars will be replaced. The replacement works for all descendants of a replaced page. In this fashion you can: Easily create a CMS like site…
WP e-Commerce Tip: Re-ordering Shopping Cart Products
Problem: I now have 4 products in my WP e-Commerce shopping cart and want to move the 4th product to the first position. Warning: These instructions are from Aug 2010 (which is forever-ago in Internet terms) and may be out-of-date! Solution: On the WP e-Commerce admin page (labeled “Store” in WordPress’s admin), click on the…
301 Redirect Htaccess Rules
How to force HTTPS using the .htaccess file – InMotion Hosting To force all web traffic to use HTTPS insert the following lines of code in the .htaccess file: RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.example.com/$1 [R,L] Note: Be sure to replace www.example.com with your actual domain name. Setting up Permanent 301 Redirects –…