HighDots Forums  

Beta 5a new fix

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


Discuss Beta 5a new fix in the Websites/HTML pages critique & reviews forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
NyoWorks Multimedia Designer
 
Posts: n/a

Default Beta 5a new fix - 03-02-2004 , 03:50 PM






I fixed some things, thanks to you all comments
If u have new tips let me know!
Do u like updates section new simple icons and updates style?

--
..:~:..:~:..:~:..:~:..:~:..:~:..:~:..:~:
Nicoḷ Armato
Nyoworks Multimedia Designer
..:~:..:~:..:~:..:~:..:~:..:~:..:~:..:~:
www.nyoworks.com
..:~:..:~:..:~:..:~:..:~:..:~:..:~:..:~:



Reply With Quote
  #2  
Old   
NyoWorks Multimedia Designer
 
Posts: n/a

Default Re: Beta 5a new fix - 03-02-2004 , 03:53 PM






Oh...I forgot. I reconverted all headers and I saved some kbs for everyone,
i hope it will be faster than before.

--
..:~:..:~:..:~:..:~:..:~:..:~:..:~:..:~:
Nicoḷ Armato
Nyoworks Multimedia Designer
..:~:..:~:..:~:..:~:..:~:..:~:..:~:..:~:
www.nyoworks.com
..:~:..:~:..:~:..:~:..:~:..:~:..:~:..:~:



Reply With Quote
  #3  
Old   
Limelight
 
Posts: n/a

Default Re: Beta 5a new fix - 03-02-2004 , 06:19 PM



Quote:
I fixed some things, thanks to you all comments
If u have new tips let me know!
Do u like updates section new simple icons and updates style?

www.nyoworks.com
Sorry, I can't tell the difference from the other one, except you removed
the splash screen which is good.




Reply With Quote
  #4  
Old   
NyoWorks Multimedia Designer
 
Posts: n/a

Default Re: Beta 5a new fix - 03-02-2004 , 06:41 PM



I mean, updates section is look good enough with right new icons includw
w3c? and not in every page as previous beta?
and site shortcut icon work?

--
..:~:..:~:..:~:..:~:..:~:..:~:..:~:..:~:
Nicoḷ Armato
Nyoworks Multimedia Designer
..:~:..:~:..:~:..:~:..:~:..:~:..:~:..:~:
www.nyoworks.com
..:~:..:~:..:~:..:~:..:~:..:~:..:~:..:~:



Reply With Quote
  #5  
Old   
Neal
 
Posts: n/a

Default Re: Beta 5a new fix - 03-02-2004 , 06:44 PM



On Tue, 02 Mar 2004 20:50:31 GMT, NyoWorks Multimedia Designer
<info(NOSPAM)@nyoworks.com> wrote:

Quote:
I fixed some things, thanks to you all comments
If u have new tips let me know!
Do u like updates section new simple icons and updates style?


Load time is better. However, there are still a lot of things I mentioned
in my other post.

1) meta http-equiv is not the best equivalent to setting charset in the
..htaccess. Ask your host if you are allowed to have a .htaccess file. If
yes, create it in your root directory and add the text I gave you ion the
last post:

AddType 'text/html; charset=iso-8859-1' .htm

- and that assumes all your webpages have the extension .htm.

2) All your keywords must be in your content. If they are not, you're
going to hurt your listings. I recommend deleting meta keywords totally.

3) <img></img> is WRONG. Change all these to <img /> or you're not doing
proper XHTML.

4) Add height and width attributes to all img tags. If you don't, the
browser guesses, and as the images load the page leaps around clumsily.


Reply With Quote
  #6  
Old   
NyoWorks Multimedia Designer
 
Posts: n/a

Default Re: Beta 5a new fix - 03-02-2004 , 06:54 PM



Quote:
Load time is better. However, there are still a lot of things I mentioned
in my other post.
Good

Quote:
1) meta http-equiv is not the best equivalent to setting charset in the
.htaccess. Ask your host if you are allowed to have a .htaccess file. If
yes, create it in your root directory and add the text I gave you ion the
last post:

AddType 'text/html; charset=iso-8859-1' .htm

- and that assumes all your webpages have the extension .htm.

is it necessary, it is an error?

Quote:
2) All your keywords must be in your content. If they are not, you're
going to hurt your listings. I recommend deleting meta keywords totally.

no keywords! you mean contents description? if yes i must delete all?

Quote:
3) <img></img> is WRONG. Change all these to <img /> or you're not doing
proper XHTML.
and w3c validate my code?

Quote:
4) Add height and width attributes to all img tags. If you don't, the
browser guesses, and as the images load the page leaps around clumsily.
ok well

--
..:~:..:~:..:~:..:~:..:~:..:~:..:~:..:~:
Nicoḷ Armato
Nyoworks Multimedia Designer
..:~:..:~:..:~:..:~:..:~:..:~:..:~:..:~:
www.nyoworks.com
..:~:..:~:..:~:..:~:..:~:..:~:..:~:..:~:




Reply With Quote
  #7  
Old   
Neal
 
Posts: n/a

Default Re: Beta 5a new fix - 03-02-2004 , 07:06 PM



On Tue, 02 Mar 2004 23:54:32 GMT, NyoWorks Multimedia Designer
<info(NOSPAM)@nyoworks.com> wrote:

Quote:
Load time is better. However, there are still a lot of things I
mentioned
in my other post.

Good


1) meta http-equiv is not the best equivalent to setting charset in the
.htaccess. Ask your host if you are allowed to have a .htaccess file. If
yes, create it in your root directory and add the text I gave you ion
the
last post:

AddType 'text/html; charset=iso-8859-1' .htm

- and that assumes all your webpages have the extension .htm.


is it necessary, it is an error?
It's not "wrong", but the other way is cleaner. The browser checks for
that anyway, so do it there and you never have to add this line to any
page on the site, as it's not going to change page-to-page. Anytime you
can save double work, do it.

Quote:
2) All your keywords must be in your content. If they are not, you're
going to hurt your listings. I recommend deleting meta keywords totally.


no keywords! you mean contents description? if yes i must delete all?
Description, sometimes it's used. But as keywords are rarely ever looked
at, no use in them. Takes up space.

Quote:
3) <img></img> is WRONG. Change all these to <img /> or you're not doing
proper XHTML.

and w3c validate my code?
The validator cannot catch this error. It's one of the limitations you
were told about when it validated it. Trust me, if it's an inherently
empty element <img /> is right.

Quote:
4) Add height and width attributes to all img tags. If you don't, the
browser guesses, and as the images load the page leaps around clumsily.

ok well

You'll see a big improvement with that one. Before you do it, clear the
cache and load the page to see what I mean. You've probably seen it on
other pages. After you set the heights and widths, clear your cache and
reload the page. It'll load nice.


Reply With Quote
  #8  
Old   
Mark Parnell
 
Posts: n/a

Default Re: Beta 5a new fix - 03-02-2004 , 07:26 PM



On Tue, 02 Mar 2004 20:50:31 GMT, "NyoWorks Multimedia Designer"
<info(NOSPAM)@nyoworks.com> declared in alt.html.critique:

I didn't look at the previous version, but here goes:

Fixed-width design. Looks really bad, especially with the white
background.
http://www.allmyfaqs.com/faq.pl?AnySizeDesign

Replace the images of text with text. At least then I might be able to
read them.

Tables (ab)used for layout.
http://www.allmyfaqs.com/faq.pl?Tableless_layouts

Don't specify font size in px. Users of IE can't resize it. Use %
(generally 100 of them).

Don't use Verdana. It is not appropriate for use in an author style
sheet. Google this and other groups for previous discussions as to why.

Justified text is hard to read. In small doses it's OK, but for anything
more than a couple of lines left-aligned is much better.

--
Mark Parnell
http://www.clarkecomputers.com.au


Reply With Quote
  #9  
Old   
NyoWorks Multimedia Designer
 
Posts: n/a

Default Re: Beta 5a new fix - 03-02-2004 , 07:42 PM




Quote:
1) meta http-equiv is not the best equivalent to setting charset in the
.htaccess. Ask your host if you are allowed to have a .htaccess file.
If
yes, create it in your root directory and add the text I gave you ion
the
last post:

AddType 'text/html; charset=iso-8859-1' .htm

- and that assumes all your webpages have the extension .htm.


is it necessary, it is an error?

It's not "wrong", but the other way is cleaner. The browser checks for
that anyway, so do it there and you never have to add this line to any
page on the site, as it's not going to change page-to-page. Anytime you
can save double work, do it.
I dont think i can access...however now actually it isn't a problem because
it isn't an error.

Quote:
2) All your keywords must be in your content. If they are not, you're
going to hurt your listings. I recommend deleting meta keywords
totally.


no keywords! you mean contents description? if yes i must delete all?

Description, sometimes it's used. But as keywords are rarely ever looked
at, no use in them. Takes up space.
Then, I'll use description content only as pure description.

Quote:
3) <img></img> is WRONG. Change all these to <img /> or you're not
doing
proper XHTML.

and w3c validate my code?

The validator cannot catch this error. It's one of the limitations you
were told about when it validated it. Trust me, if it's an inherently
empty element <img /> is right.

<img><img /> or u mean <img> ... />
some sites speak about only <img> ... /> is perfect for xhtml, don't u?
I'd like to know a lot about. Links discuss about it?

--
..:~:..:~:..:~:..:~:..:~:..:~:..:~:..:~:
Nicoḷ Armato
Nyoworks Multimedia Designer
..:~:..:~:..:~:..:~:..:~:..:~:..:~:..:~:
www.nyoworks.com
..:~:..:~:..:~:..:~:..:~:..:~:..:~:..:~:




Reply With Quote
  #10  
Old   
NyoWorks Multimedia Designer
 
Posts: n/a

Default Re: Beta 5a new fix - 03-02-2004 , 08:06 PM



Oh, poor me then....

"Mark Parnell" <webmaster (AT) clarkecomputers (DOT) com.au> ha scritto nel messaggio
news:1uncf29btwwut$.1op1vhj7npzcf.dlg (AT) 40tude (DOT) net...
Quote:
On Tue, 02 Mar 2004 20:50:31 GMT, "NyoWorks Multimedia Designer"
info(NOSPAM)@nyoworks.com> declared in alt.html.critique:

http://www.nyoworks.com/

I didn't look at the previous version, but here goes:

Fixed-width design. Looks really bad, especially with the white
background.
http://www.allmyfaqs.com/faq.pl?AnySizeDesign

Replace the images of text with text. At least then I might be able to
read them.
Ok. You are right, but I haven't a tons of text as link you said, my site
will be a graphic and audio, music (nextly i'll finish my concept symphonic
album) personal presentation site, i could did it entirely in flash, ok, i
didn't it, could did it in text standard mode but i haven't programmer mind
so i did it best for me, graphic static style. Menu displayed with alt
text. and however about xhml and css I have only 3 days experience.

Quote:
Tables (ab)used for layout.
http://www.allmyfaqs.com/faq.pl?Tableless_layouts

Don't specify font size in px. Users of IE can't resize it. Use %
(generally 100 of them).
A pro sites said that px are good and enough compatible or w3c scale size.

Quote:
Don't use Verdana. It is not appropriate for use in an author style
sheet. Google this and other groups for previous discussions as to why.

Justified text is hard to read. In small doses it's OK, but for anything
more than a couple of lines left-aligned is much better.

it's not only verdana, arial and serif also in css.
and you could be a bit less bad with novice webdesigner, don't u? )

--
..:~:..:~:..:~:..:~:..:~:..:~:..:~:..:~:
Nicoḷ Armato
Nyoworks Multimedia Designer
..:~:..:~:..:~:..:~:..:~:..:~:..:~:..:~:
www.nyoworks.com
..:~:..:~:..:~:..:~:..:~:..:~:..:~:..:~:




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.