Search Video and Film Sites

Wednesday, January 30, 2008

Amazing Web Design Secrets Revealed...


Amazing Web Design Secrets Revealed...
Guarded Techniques the Pros Don't Want You to Know


Web design expert and author Shelley Lowery's latest ebook, Web Design Mastery, is taking the Internet by storm...Cutomers are raving..."Finally, a web design course that makes total and complete sense! Shelley, your new eBook will quickly become the "bible" for anyone who wants to build a website. Totally top shelf!" -- Rick Beneteau

For the first time, Shelley reveals all of her professional Web design secrets in her latest book, Web Design Mastery.

Finally! A COMPLETE Web design system that makes professional Web design easy...with 100s of copy and paste codes.

Click Here to see what everyone is raving about... Web Design Mastery is quickly becoming known as the "Bible" for professional Web design...

Web Design Mastery is a MUST read for anyone serious about designing a great website! I HIGHLY recommend it.

Tuesday, January 8, 2008

Designing A Webpage

Today, i would like to discuss a bit about website design. We need at least a website to facilitate our internet marketing ventures.

Before we talk further about it, let’s define what a web design is. Web design refers to the look and feel of the website. It’s part and parcel of a website development. Website design is abuot the ways on how to use various website technologies, like CSS, HTML, XTML, JAVA SCRIPTS and so on to make the site look the way you want it to.

I will cover some rules of thumb you could follow through the design. Some points to think about when you making a page include:

  • where you want things to appear; whether the navigation bar should be, accross the top, down the side etc.
  • where is the content pool, is the window resizeable or do you want it just enough so that the display just so,
  • how heavy will the graphics be and how will the flash animation be;

Layout information is key and you want to be aleast aware, if not absolutely control where the browsers’ eyes goingto travel.

It is worth it, especially for beginners to engage in paper and pencil exercise, and literally draw out how you want the page to look before you start coding anything; then whether the design is appropriate for your target market and whether it will fit the screen.

They present lists of color combinations that work well together so that you do not accidentally come out with something that is completely unreadable by color blind persons.

I also have some caveats about not so good web designs.

As much as you want to include all the photographs you have collected into one page, probably making the one page too busy is not a good example of a page that you would want to do. If you overload a page with a lot of photo-shop effects, it could get really messy really quickly.

Try to avoid nested tables for layouts. It’s difficult to maintain over time. While it may get you initially upfront, the exact dimension you want to the pixel using Cascading Style Sheet (CSS), especially going forward is a much simpler way of maintaining pages and the layout.

A web page with a list of things which you might want to consider avoiding in terms of website design is www.useit.com/alertbox/9605.html. Another reference site for things that you probably want to avoid is www.webpagethatsuck.com/. They make some really excellent points about what you should and should not do and talk about why with concrete examples of really ugly sites on the web.

In general, if it looks bad on paper, it will probably look bad if it is displayed on somebody’s monitor.

No matter what level is your web design experience, here is some good reference which you can use:

You may also want to bookmark this page at www.visibone.com/colorlab/ to guide you with what color combos work well together and what you would want to avoid.

Well, that’s for today. I hope these little pointers do help.

The Online Biz Guy

www.online-biz-guide.com

Google

Home Biz Tools

Form Submissions Without Submit Buttons

By William Bontrager

When you want a form that can be submitted without requiring the rather prominent submit button, this article shows you how, with several methods:

  1. Submitting a form with a regular link.
  2. Submitting a form when a checkbox is checked.
  3. Automatically submitting a form.

This article contains step-by-step instructions with code examples. I think you'll find it easy to follow.

The article assumes you already have a working form that is submitted to a CGI program in the conventional manner, with a submit button. When you see "/cgi-bin/script.cgi" in the examples, substitute the URL of your CGI program.

If you don't already have form and CGI program, consider Master Feedback from http://willmaster.com/master/feedback/ to have the submitted information sent to you via email, or Master Form V3 from http://willmaster.com/master/formV3/ for a program that can also store form information in a database on your server.

Submitting a Form With a Regular Link

With this method, you can cause a form to be submitted when the user clicks on a regular link, which can be a text link or an image link.

This requires two steps.

First step, the form —

Give your form a name. This is done in the FORM tag itself:

<form
   name="MyForm"
   method="POST"
   action="/cgi-bin/script.cgi">

Second step, the JavaScript —

Create a link containing the submit command:

<a href="javascript:document.MyForm.submit();">
Click to submit the form
</a>

Optional third step —

You can remove the submit button or, to be kind to the few non-JavaScript browsers that visit your site, put it between NOSCRIPT tags:

<noscript>
<input type="submit" name="Click here">
</noscript>

The above will display the submit button only when non-JavaScript browsers visit the page.

Submitting a Form When a Checkbox is Checked

We'll use a checkbox to demonstrate how to cause a form to be submitted when the user does something with a form field. When the checkbox is checked, the form submits.

(Actually, the submission occurs when the checkbox is clicked, which would be a check if it was previously unchecked or would be an uncheck if it was checked.)

This requires two steps.

First step, the form —

Give your form a name and add the checkbox. The checkbox would probably have instructive text. Example:

<form
   name="MyForm"
   method="POST"
   action="/cgi-bin/script.cgi">
<input
   type="checkbox"
   name="MyCheck"
   onClick="DoSubmission();">
   Check when done with form

Second step, the JavaScript —

<script type="text/javascript" language="JavaScript"><!--
function DoSubmission() {
document.MyForm.submit();
}
//--></script>

Put the JavaScript anywhere on your page, in the HEAD or BODY area, above or below the form.

Optional third step —

As in the "Submitting a Form With a Regular Link" section, above, you can remove the submit button or keep it between NOSCRIPT tags for non-JavaScript browsers.

Automatically Submitting a Form

If you only want to log CGI environment variables, and/or set a cookie, a form submission without actually sending information to the CGI program could be appropriate. Otherwise, the form should have information to submit before it is submitted, whether automatically or by manual click.

In other words, we'll have to figure out a way to get information into the form before it's automatically submitted.

Information that's available to put into the form are things like the current web page URL and the time zone information from your visitor's computer. The latter is a way to determine which geographical time zones your visitors are at — except those who have incorrect clocks and/or time zone information specified for their computers.

This requires two steps.

First step —

Put a form with a name into your web page. There must be one hidden field for each item of information you want to automatically fill with information and submit, current URL and time zone offset are in our example:

<form
   name="MyForm"
   method="POST"
   action="/cgi-bin/script.cgi">
<input
   type="hidden"
   name="ThisPageURL"
   value="">
<input
   type="hidden"
   name="TimeZoneOffset"
   value="">
</form>

You'll need to add a hidden field to let your CGI program know the URL of the "thank you" page it should use.

Put the form anywhere in the BODY tag. It won't be visible, but it will cause the browser to print a blank line.

Second step, the JavaScript —

Somewhere below the form, put the following JavaScript code:

<script type="text/javascript" language="JavaScript"><!--
document.MyForm.ThisPageURL.value = document.URL;
var x = new Date();
document.MyForm.TimeZoneOffset.value = x.getTimezoneOffset();
document.MyForm.submit();
//--></script>

When the page is loaded, the JavaScript will automatically fill in the form with the web page's URL and the time zone offset information from your visitor's computer, and then automatically submit the form. After processing the form information, the CGI program presents a "thank you" page.

The time zone offset is the number of minutes plus (West) or minus (East) of Greenwich Mean Time.

Optional third step —

Because the automatic submission of the form will load a different page (don't have the "thank you" page be the same page, re-loaded, or it will submit the form each time the page loads, in an infinite loop), you may want to put your automatic form submission page into an IFRAME tag. The "thank you" page can then be an image or other content that you want to display on the page.

To make an IFRAME tag, put this into a web page (a web page different than the web page with the automatically submitted form):

<iframe
   height="300"
   width="200"
   src="WebPageContainingAutomaticForm.html">
</iframe>

Adjust the URL so the web page containing the automatically submitted form loads into the IFRAME tag. And adjust the height and width to accommodate the "thank you" page.

The web page with the automatically submitted form will load into the IFRAME and, after automatic submission, load the "thank you" page.

(Netscape versions 4.# and earlier don't recognize the IFRAME tag. It's ignored, as if it wasn't there — no extra space, no content, nothing.)

Notes

If you decide to test several of the above examples on the same web page, give the forms different names. Otherwise, the browser is likely to become confused about which information belongs to which form.

Have fun with the examples. Once you're familiar with how they work, you can decide whether or not they can be adapted to your unique requirements.

Will Bontrager

Copyright © Bontrager Connection, LLC

About the Author:


William Bontrager Programmer/Publisher, "WillMaster Possibilities" ezine mailto:possibilities@willmaster.com

Are you looking for top quality scripts? Visit Willmaster and check out his highly acclaimed Master Series scripts. Some free, some for a fee.


Sponsor Message:

Visit the Web Design Mastery site to
download your free chapters (77 pages)!


Content Provided By: