avatar
layout
Preview // Download [17]
All Tutorials

[Form Fields] // CSS
The creation of customized form fields is a simple process of adjusting the specific parts of the form. There are three main areas of the form: input, select, and textarea. They control different aspects of the form. The input controls the boxes which requires hand-typing information. The select has dominion over drop down menus and other predefined options which users often are required to click on. The textarea option is what controls what is usually considered the comments box, which is a large input area where there is no defined information required to be entered. To modify the default code for forms, the specific parts may be combined as a single CSS function for easier and uniformed change.

input,select,textarea { }
...Read more?

[Cursor] // CSS
The following is a tutorial which explains the various types of cursors for websites and how to implement them through CSS. First, place the proceeding code either within the CSS page or between the <style> tags at the top of the page.

a:link { cursor: cursor; }

Replace the cursor text with any of the following cursors.

help
n-resize
e-resize
s-resize
w-resize
crosshair
move
text
wait

...Read more?