Jump to content

Restaurant Wesbite


nickbrookfield

Recommended Posts

I like the look, but two complaints:

 

1. The menus are .pdf files.  I hate that.  You should never, ever, ever force the user to have an add-on and to open another window in order to view what's primarily textual data.  There's no reason why you can't incorporate the menus into the site itself, with a printer friendly version available.

 

2. The background images have a distracting load time and pop-in.

Link to comment
https://forums.phpfreaks.com/topic/266451-restaurant-wesbite/#findComment-1365427
Share on other sites

"The Weighing Room" on the left menu looks like it is cut off on my screen, not sure if anything is below it or not.

 

I see you fade the background image in, but to make it "cleaner", you could do some js like so:

imgPath = "/path/to/image.jpg";
img = new Image();
img.src = imgPath;
img.load = function(){
    $("#myDiv").css({backgroundImage: imgPath, display: "none"}).fadeIn("fast");
}

Link to comment
https://forums.phpfreaks.com/topic/266451-restaurant-wesbite/#findComment-1365566
Share on other sites

"The Weighing Room" on the left menu looks like it is cut off on my screen, not sure if anything is below it or not.

 

I see you fade the background image in, but to make it "cleaner", you could do some js like so:

imgPath = "/path/to/image.jpg";
img = new Image();
img.src = imgPath;
img.load = function(){
    $("#myDiv").css({backgroundImage: imgPath, display: "none"}).fadeIn("fast");
}

 

Hi Little guy,

thanks for the js clean up. i'll give that a blast tonight.

How do you mean about the menu being cut off? which browser are you using? any chance of a screen grab?

 

many thanks again!

nick

Link to comment
https://forums.phpfreaks.com/topic/266451-restaurant-wesbite/#findComment-1365655
Share on other sites

The site is neat, I'll give you that. However my largest concern is how vivid the backgrounds are in comparison with the opaque containers.  The clash is too intense to legibly read the words without strain

yDTp.png

 

many thanks for the positive feedback. i'll have a play with the opacity to make the content clearer

 

cheers, nick

Link to comment
https://forums.phpfreaks.com/topic/266451-restaurant-wesbite/#findComment-1365656
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.