"Rob McAninch" <> wrote in message
news:Xns94C0D2C60FD75rock13com@216.196.97.142...
> Andries <news:c4ngch$u3v$>:
>
> > Rob McAninch wrote:
> [snip]
> >> I don't like the forced fullscreen from that first link [...]
> >
> > I do understand this. But it's supposed to be put on a cd as
> > part of an art-book. So the user won't mind his navigation is
> > gone. I did this to get the pictures/drawings as large as
> > possible.
>
> As someone else pointed out, including the height and width of
> the images will help the browser render the page faster and then
> fill in the image as it downloads.
>
> However, if this site is to end up on a CD then this issue should
> not even matter. For instance your pages are rendered quickly on
> my connection (typically around 300kb/sec) and accessing a local
> drive is going to be much faster.
>
> How do the pages perform when you access them off of your local
> drive?
>
> --
> Rob - http://rock13.com/
> Web Stuff: http://rock13.com/webhelp/
That's a really good point. Load times from a CD-ROM are going to be pretty
good. A user can easily copy the files to the local HD. If you were going to
keep a version on the web however, there is that problem when a page loads
into a frame. you see a white background color flash before the page
completely loads.
Andries,
I noticed you have a mono-color gif that you tile on 'main pages'. Add this
to your style sheet:
body {
background-color: #C7C4AF
}
That's the color of your background GIF and all of your main pages are
linked to the same style sheet. At your leisure, you can remove background
attributes of all the main html pages body elements. Unless you plan using
another background image in the future. Then on your frames page, add this
attribute to the "main" frame element:
<FRAME NAME="main" SRC="main.html" SCROLLING="AUTO" BORDER=0 MARGIN=0
TARGET="_top" allowtransparency="true" >
allowTransparency="true" is a Microsoft extension and only works for IE5 and
later. It shouldn't break other browsers though. This attribute will make
the frame background transparent and let the original body background color
show. see:
http://msdn.microsoft.com/workshop/a...ansparency.asp
That is, if you want to leave a version on your site.
Regards,
Jim