Displaying layouts/designs to clients

Soldato
Joined
27 Dec 2005
Posts
17,316
Location
Bristol
What's the best way of display a layout/design of a website (in the form of an image) to clients? I used to do the background method but it doesn't work in IE (no scrolling) and a few people just see a blank screen for whatever reason (can't explain).

An example of the background method: www.jonesmillbank.com/vinofino. If you don't see anything then view source and tell me why! :p

What other ways are there that allow scrolling (ie not just a screenshot) and display it at the right size/position?
 
Or create a div the same size as the background image and allow it to overflow. If you're designing for a living this is basic stuff you should already know.
 
Why not try dropping a div in there and attaching it to that?

Duh. Thanks.

Surely you could just insert it as an img tag?.

No, because the image is 3000 pixels wide.

Or create a div the same size as the background image and allow it to overflow. If you're designing for a living this is basic stuff you should already know.

Always used the background method, but on my colleague's Safari he just gets a blank white page (not even coloured) which I've never seen before. And no, it's not for my living :).
 
This is going to sound more accusatory than I mean it, but: why are you showing images of sites to clients rather than the actual site itself?

Is it steal-code paranoia?
 
That and it instantly displays it at the right size and position and allows scrolling.

Sending a jpg means they'll either have white space at the sides, the center of the image will be offset to the right or they'll be previewing it smaller than intended.
 
Set the image as a background in a DIV is usually how i go about it. Although to get it to scroll correctly in IE i've always had to add the correct px height of the image to the div eg: height:1022px; instead of height:100%; (in this case).
 
Back
Top Bottom