Hello drupal friends,
I have one of the best drupal sites I have seen. It was developed by the company I work with please tell me what you think?
http://seaguardinternational.com/

Comments

it leaves some whitespace

it leaves some whitespace under the footer..else looks good to me

Thanks

Thanks for the comment, I will take your suggestion to the team.

Autoclear Contact Form

I'd recommend setting up your form to auto-clear on click for user experience purposes. You can modify the JQuery below to work for your purposes:

$("#webform-client-form-xx .form-item input")
  .focus(function() {
        if (this.value === this.defaultValue) {
            this.value = '';
        }
  })
  .blur(function() {
        if (this.value === '') {
            this.value = this.defaultValue;
        }
});

Also, I'd recommend installing Global Redirect to prevent users from ending up on /node when they click on pager links in your top blocks.

Front-End Developer and Site Builder. My portfolio is available on my website

nobody click here