Jump to content

Recommended Posts

Posted

Nice site. When viewing the source i see this:

<meta name="robots" content="noindex" /> <!-- remove before launch -->

Also it wouldn't hurt to fill up your meta description tag. Meta keywords aren't used by any of the major search-engines, so i would probably remove them from my templates.

Also i think there is an error in your canonical link entry (link rel instead of rev)

  • 1 year later...
Posted

Hi Marty,
 
very good design! Good job!
 
I wish I could do something beautiful like that for my site. (I'm currently working on a renew).
 
---
When viewing the code my browsers inspector says that there is an unclosed a-tag (contact-email) in line 77 of startpage.
 
Also there are a huge amount of resize calls from the video-window (at Line 111). (more than 100 / second)
 
Fortunately for you :) , I come across that (last point of post) for my site a few days ago, so I think you could change it like:

// On resize show/hide navigation
// http://stackoverflow.com/questions/8943816/changing-a-class-name-with-jquery-given-a-specific-width-range-media-query
// enhanced with a Timeout

var resizeTimer;

function changeClassNameOnResize() {
	$(".off").hide();
	console.log('resize called');      // should be removed in production site ?
	var width = $(window).width();
	if(width <= 767){
	   $('.nav').removeClass('on').addClass('off');
	}
	else{
	$(".on").show();
	   $('.nav').removeClass('off').addClass('on');
	}
}

$(window).resize(function() {
	window.clearTimeout(resizeTimer);
	resizeTimer = window.setTimeout('changeClassNameOnResize()', 250);
}).resize(); //trigger the resize event on page load.
Posted

Nice work, Marty. The lat/long bits on the events really caught my eye.

I don't know about you, but when I give clients more choices around how & when RWD is done, a lot of them seem to prefer to get the basic/desktop site up first, then work on the RWD parts as a follow-on. Personally I kind of like doing it that way, given the choice. I'm working on a few of those right now.

Posted

Good jog. Nice clean and elegant design. 

our-work might be presented in a more appealing and more legible way. Maybe a simple clean table, or a description list with indention?

cheers

Posted

@Vineet Indeed it is a modified version of Simple Grid as @arjen pointed out. I've used it a few times and it's my favourite grid starter kit so far.

@arjen Thanks!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...