Saturday, October 25, 2008

EditPlus: Good Text Editor

Guys

I have been using this text editor for my project thought to share with you. Its a nice piece of shareware and has some handy features like: code validator, spell checker, code organiser, colour codes and styles etc.

“EditPlus is a text editor, HTML editor and programmers editor for Windows. While it can serve as a good Notepad replacement, it also offers many powerful features for Web page authors and programmers.”


Website: http://www.editplus.com/

Gradient background using CSS

Hi

I found this technique very cool as it lifts the look and feel of the site. There are some amazing things you can do with CSS, just have to play right. The trick is having correct dimension of your image and its matter of applying repeat-x in CSS. Create image about 2 px wide and 1200 px in height and apply liner gradient effect. 1200 px will work perfectly for monitor size: 1024 px with out replicating on y-axis.

Apply the image in the body {} of you CSS

e.g.


body {
padding:0;
margin-right: 0;
background-image: url(images/body_bg.jpg);
background-repeat: repeat-x;
background-position: 0;

}

Friday, October 24, 2008

Adobe CS 4 Released!

Hi

Adobe has recently announced their latest Web Design Package; the promises are big and better. Fireworks have some stunning wireframe design features. Have a sneak preview of the launch and e-seminars:


Resource: http://www.adobeonlinefestival.com/

Web Form Validation using JavaScript

Hi Guys

While reaesrching about the web form validation, I came across this simple but nifty code which actually places the cursor in the required field, just add .focus(); syntax after mandatory field and will work.

function validateForm(formname)
{
if(document.forms. formname.requiredfield.value=="")
{
alert("Please enter……...");
document.forms. formname. requiredfield.focus();
return false;
}

Resource:
http://www.w3schools.com/js/js_form_validation.asp