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

nor111’s picture

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

cjordan’s picture

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

elblufer’s picture

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.