HighDots Forums  

Web site critique

Websites/HTML pages critique & reviews Discuss and review existing WWW material (alt.html.critique)


Discuss Web site critique in the Websites/HTML pages critique & reviews forum.



Reply
 
Thread Tools Display Modes
  #21  
Old   
Oli Filth
 
Posts: n/a

Default Re: Web site critique - 05-17-2005 , 06:43 AM






Neo Geshel wrote:
Quote:
Oli Filth wrote:

header("Content-Type: ...");

Before any script output. However, there are issues with XHTML MIME
types and Internet Explorer (cos it's lame). Do a Google search for
"xhtml mime explorer" to find your options.


I’ve already tried that. It throws a major server error that totally
destroys my stylesheet formatting and produces a line of text (the error
message) at the very top (prior to any XHTML code). I’ll try it again
soon so I can pass on the error message.

Sounds like something on your server is screwy then.


--
Oli


Reply With Quote
  #22  
Old   
Terry
 
Posts: n/a

Default Re: Web site critique - 05-17-2005 , 08:13 AM






Travis Newbury wrote:
Quote:
Terry wrote:

link rel="stylesheet" media="print" type="text/css"
href="csss/print.css"> Works for me (IE 6) - I guess IE is order
sensitive. (Hard to imagine a bug in a quality browser ;-)


What quality browser?
Sorry, I guess I was not clear enough on two points. One, I changed the
order in the <link . . . > from the op's file to the above order and it
worked fine in IE. Two, the quality browser should have been wrapped in
<grin></grin> (as <grin>quality</grin>)

--
TK
http://www.wejuggle2.com/
Still Having a Ball


http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----


Reply With Quote
  #23  
Old   
Travis Newbury
 
Posts: n/a

Default Re: Web site critique - 05-17-2005 , 07:00 PM



Toby Inkster wrote:
Quote:
What link? Your link styling (or lack thereof) makes it pretty difficult
to distinguish links and plain text. BTW, the patent on gifs expired
some time ago.
...In the US. Elsewhere, there are still patents on GIF.
Has anyone ever been sued over the gif patent? I mean an individual, or
company < 500 employees.

--
-=tn=-


Reply With Quote
  #24  
Old   
Steve Sundberg
 
Posts: n/a

Default Re: Web site critique - 05-18-2005 , 02:41 AM



On Tue, 17 May 2005 12:40:53 -0500, kchayka <usenet (AT) c-net (DOT) us> wrote:

Quote:
Steve Sundberg wrote:

And why use Flash for a simple slide show?
As an alternative, a properly optimized GIF animation
would get the same job done for fewer bytes.

I doubt it. Gif is not an appropriate format for photos. An animated gif
would probably be many times larger than a properly compressed Flash
movie, at least for photographic content.

Now, if they were line drawings instead, it would be another matter.
Yes, you're correct -- although I will sometimes convert JPGs to GIF
in order to achieve the dithered effect. The solution to the large SWF
file size has to involve using properly optimized JPG or PNG images.
Given the few images used in this particular Flash file, there
shouldn't be any need for the SWF to be larger than 50k-75k.




Reply With Quote
  #25  
Old   
Ben Measures
 
Posts: n/a

Default Re: Web site critique - 05-18-2005 , 05:52 AM



Gazza wrote:
Quote:
You need to read the specs for XHTML Media Types. It clearly says that
XHTML1.1 SHOULD use application/xhtml+xml as it's mime type.
I can't find that stated in the w3.org XHTML 1.1 specs.

XHTML 1.0 says,
Quote:
XHTML Documents [snip] may be labeled with the Internet Media Type
"text/html" [RFC2854], as they are compatible with most HTML browsers.
Those documents [snip] may also be labeled with the Internet Media Type
"application/xhtml+xml" as defined in [RFC3236].
Further, the changes from XHTML 1.0 to 1.1
<http://www.w3.org/TR/xhtml11/changes.html> doesn't declare a change in
mime-type recommendations.

--
Ben M.


Reply With Quote
  #26  
Old   
Neo Geshel
 
Posts: n/a

Default Re: Web site critique - 05-19-2005 , 09:03 AM



Steve Sundberg wrote:
Quote:
On Tue, 17 May 2005 12:40:53 -0500, kchayka <usenet (AT) c-net (DOT) us> wrote:


Steve Sundberg wrote:

And why use Flash for a simple slide show?
As an alternative, a properly optimized GIF animation
would get the same job done for fewer bytes.

I doubt it. Gif is not an appropriate format for photos. An animated gif
would probably be many times larger than a properly compressed Flash
movie, at least for photographic content.

Now, if they were line drawings instead, it would be another matter.


Yes, you're correct -- although I will sometimes convert JPGs to GIF
in order to achieve the dithered effect. The solution to the large SWF
file size has to involve using properly optimized JPG or PNG images.
Given the few images used in this particular Flash file, there
shouldn't be any need for the SWF to be larger than 50k-75k.

The SWF file is only 9kb in size. The images are external to the SWF
file, and are loaded with help from an (also external) XML file that
acts as a control to ID the images.

The main culprit are the photos themselves. They need to be compressed
more, except I can’t stand the dithering. Damn JPEG. If only Flash could
properly digest PNG. :-(

...Geshel
--
************************************************** ********************
My reply-to is an automatically monitored spam honeypot. Do not use it
unless you want to be blacklisted by SpamCop. Please reply to my first
name at my last name dot org.
************************************************** ********************


Reply With Quote
  #27  
Old   
Ben Measures
 
Posts: n/a

Default Re: Web site critique - 05-19-2005 , 10:53 AM



Neo Geshel wrote:
Quote:
The main culprit are the photos themselves. They need to be compressed
more, except I can’t stand the dithering. Damn JPEG.
There's something seriously wrong with your application if you're
getting dithering. Dithering is only supposed to be performed when you
reduce the number of colours in the image (don't do this).

Quote:
If only Flash could properly digest PNG. :-(
Since you're compressing photo-realistic images, you do not want PNG
unless you want lossless compression (perfect quality over filesize).

TTFN,
--
Ben M.


Reply With Quote
  #28  
Old   
Travis Newbury
 
Posts: n/a

Default Re: Web site critique - 05-19-2005 , 04:25 PM



Neo Geshel wrote:

Quote:
The main culprit are the photos themselves. They need to be compressed
more, except I can’t stand the dithering. Damn JPEG. If only Flash could
properly digest PNG. :-(
Import the pngs into a swf then dynamically load the swf(s) in your
slide show flash. When ever we need quality images (or transparency) we
do this.

--
-=tn=-


Reply With Quote
  #29  
Old   
Travis Newbury
 
Posts: n/a

Default Re: Web site critique - 05-19-2005 , 04:26 PM



Neo Geshel wrote:

Quote:
The main culprit are the photos themselves. They need to be compressed
more, except I can’t stand the dithering. Damn JPEG. If only Flash could
properly digest PNG. :-(
Import the pngs into a swf then dynamically load the swf(s) in your
slide show flash. When ever we need quality images (or transparency) we
do this.

--
-=tn=-


Reply With Quote
  #30  
Old   
Travis Newbury
 
Posts: n/a

Default Re: Web site critique - 05-19-2005 , 04:26 PM



Neo Geshel wrote:

Quote:
The main culprit are the photos themselves. They need to be compressed
more, except I can’t stand the dithering. Damn JPEG. If only Flash could
properly digest PNG. :-(
Import the pngs into a swf then dynamically load the swf(s) in your
slide show flash. When ever we need quality images (or transparency) we
do this.

--
-=tn=-


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.