Photobucket

Add to Technorati Favorites

Thursday, March 12, 2009

Intake Forms

Creating a contact form to use on your website is a great way to collect information from potential clients. Rather then simply listing your email address or phone number, the contact form will require the user to enter important information like name and number, and also give the option to ask for extra info like comments or questions. The simplest way to create a form will require the viewer to send the email themselves, while using a .php file to send your form will automatically send you the information as soon as the send button is pressed.
Don't know PHP? Don't worry, there are many websites available that will create your form and the PHP file for free! With a few alterations to the .php file, you can customize your form and add extra intake fields.
For example, I use a site called The Site Wizard to create forms. It will quickly generate a form to use, but has limited intake information. You will need to create an extra .html page to use for your ERRORS and THANK YOU pages after someone hits send. If you need to add extra, customized information, then you can copy and paste the existing form lines, and change the name or question. After you do this though, you must alter the .php file so that the new lines get sent. Basically, read over the PHP and everytime you see a line that refers to one of the intake form boxes, duplicate that line and change the name to match your new box. For example, if there was orginally Name, Address, Email, and Phone, but you added Comments, then you would need to find everywhere in the PHP that Name, Address, Email, and Phone are listed, and create a new line for Comments. If you don't alter the PHP, and only the form, then the new info you have added will not be sent to you in the email.
It might help to read up on PHP before you tackle it, unless you have experience with other programming languages and HTML.

Labels: , , , ,

Thursday, March 5, 2009

No Flash Player!!

It can be very frustrating as a web designer to create amazing Flash content, only to find out that many of your viewers do not have Flash installed.  There are a couple ways to get around this. 
1.  If you have a site that is completely designed in Flash, then you will need to use the javascript option listed below.  The reason for this, is that unless you want a single image to replace your entire site, you will need to redirect the user to an alternate page that does not contain Flash. This option creates more work for the designer/developer because you'll actually be constructing two separate sites.. one for Flash, and one for HTML alone.  
2.  This second option works well for any site that has Flash content only as a header, or other singular part of a site.  The majority of the site in this example should be HTML, with limited Flash content added.  This technique uses a line of HTML code that will swap the Flash content for an image anytime that a Flash Player is not detected.

Links and Code for Flash Detection:
(Also try searching Google.com for Flash Player detection)


Labels: , , , ,

Wednesday, February 18, 2009

Web Design - Adding a Drop Shadow

It recently came to my attention that many websites feature a drop shadow separating the body from the background. The body of the site would be centered on the page and the background would consist of a solid color or a pattern (.jpg image file most likely). The drop shadow creates a nice feeling of depth and is a eye-catching divider between the content of the site and the background. If set up properly, the drop shadow will slide with your website as the browser window is sized larger or smaller. This technique can be accomplished in a couple different ways.
Example One:
Create a new document in Adobe Photoshop sized accordingly with your website content (If working in Dreamweaver, I recommend converting to a centered table). You will create a new layer and draw a rectangle slightly smaller than your entire document. Using Layer Styles, create an Outer Glow in the color of your choice. Save the image into your website images folder as a .jpg with a low resolution (72 should do). In Dreamweaver, select your entire table and locate the background image option in your Properties Window. Add the .jpg you have created and then under Page Properties, change the background color or add a background image file to coordinate with your website content.
Example Two:
This example uses CSS to create the effect. Rather than writing it all out, I'll simply insert the following link that outlines the instructions.
http://www.webdesignerforum.co.uk/index.php?showtopic=307


Labels: , , , , , ,