Please Review

The layout of the site is very nice, and easy to use.
The only remarks I have is the timing on the top navigation and you can't tell which category you are on the services JavaScript box.
 
The layout of the site is very nice, and easy to use.
The only remarks I have is the timing on the top navigation and you can't tell which category you are on the services JavaScript box.

Thanks for the feedback! Will look into the navigation side of things.

:thumbup: One of the best sites I've seen in years. Great color scheme, intuitive navigation, layout is fabulous. Kudos to your design team.

Many thanks! Much appreciated.

Cheers Guys
 
Nice layout. Seems like it's that time of year again for redesigns. Ours is currently under final stages of site redesign too :)

Very snappy site though. One thing to maybe watch out for is the number of dropdown options from your top menu. We've been watching google analytics and where users are clicking on the page - we've found that more people click through the site rather than the top navigation. Seems too many options lead to no clicks at all in there.

But very snappy site. Was it a template purchased somewhere or something designed from the ground up? Also, your WHMCS integration was nice - did you guys do that inhouse or have someone else do that?
 
The design was was done around 7 months ago. Just good to ask for feedback now and again to see if anything needs to be updated! :)

It was designed from the ground up. I can do v4 integration but hadn't looked into doing v5 integration at the time, so I got Paul from WHMCSIntegrations.ca to do it.

Cheers
 
I am really not a fan of the lag in the main drop-down navigation menu. It should be instant on response as hovering quickly over the menu choices, it overlays on the next drop-down menu.
 
I am really not a fan of the lag in the main drop-down navigation menu. It should be instant on response as hovering quickly over the menu choices, it overlays on the next drop-down menu.
Must be the difference in our connections because here I'm seeing "instant on response." :)
 
Must be the difference in our connections because here I'm seeing "instant on response." :)

I believe it has to do with the code rather than a connection because on the dozens of sites that I visit, all menus are pretty responsive to mouseover actions (both on and off modes).
 
It is not the loading part that is the problem - it is the disappearing side that lags. :)

Ok. In the JavaScript file I changed

// ***** at_hide *****

function at_hide()
{
var p = document.getElementById(this["at_parent"]);
var c = document.getElementById(this["at_child" ]);

c["at_timeout"] = setTimeout("document.getElementById('"+c.id+"').style.visibility = 'hidden'", 333);
}

to

// ***** at_hide *****

function at_hide()
{
var p = document.getElementById(this["at_parent"]);
var c = document.getElementById(this["at_child" ]);

c["at_timeout"] = setTimeout("document.getElementById('"+c.id+"').style.visibility = 'hidden'",0);
}

Now there is no delay when hovering from one menu to another.

Thanks! :beer:
 
Back
Top