HTML coding for all browser types

  • TheSphinx
  • Newbie
  • Newbie
  • User avatar
  • Joined: Feb 11, 2004
  • Posts: 9
  • Loc: London Ontario
  • Status: Offline

Post February 11th, 2004, 3:31 pm

Hello everyone again

My wife is an avid webpage designer and graghic designer in the making and is in need of a liitle help.

We have just recently been told that our family website is not viewable in netscape and am not y that is?

We are thinking it is due to some coding she missed and it is not viewable in all browser types.

But not sure

If anyone may be able to help it would be greatly appreciated. :D 8)

Thx alot

this is the link to the site for use in checking out the source code ( she writes all her own code and doesn't use templates)

http://members.rogers.com/mbiron/

Thx again
Sonny
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post February 11th, 2004, 3:31 pm

  • Axe
  • Genius
  • Genius
  • User avatar
  • Joined: Jan 07, 2004
  • Posts: 5755
  • Loc: Sub-level 28
  • Status: Offline

Post February 11th, 2004, 3:37 pm

Which version(s) of netscape? All versions, or just NS4? If it's only NS4, don't worry about it. I'm not sure of the exact timeline, but NS4's gotta be like a decade old by now, heh.

You can't really hope to create a good popular website that's compatible with everything out there. If you're wanting to do that, you might as well go text-only, then you're not persecuting the Lynx users :)
John
» PHP Scripts & Resources » Free Photoshop Tutorials
» Anybody wanna pay my mortgage? PM me!

Post February 11th, 2004, 3:38 pm

I hope you don't mind, but I've moved your thread to the proper category.
- dM

Post February 11th, 2004, 3:40 pm

Is you're question about the Amber Alert box?
- dM
  • TheSphinx
  • Newbie
  • Newbie
  • User avatar
  • Joined: Feb 11, 2004
  • Posts: 9
  • Loc: London Ontario
  • Status: Offline

Post February 11th, 2004, 3:45 pm

no sry it isnt about the amber alert box

i have a friend that uses netscape and cannot view our site and just thought there was a code u put in so it allows for all browser types to view it

oh and sry bout not having it in the right section

my first time using a forum

thx alot tho all

Post February 11th, 2004, 3:50 pm

no problem at all on the category.


I've looked at the page in the current versions of IE and NS, and also in NS 4.08 (an historic browser)...they all display fine.
:)
- dM
  • TheSphinx
  • Newbie
  • Newbie
  • User avatar
  • Joined: Feb 11, 2004
  • Posts: 9
  • Loc: London Ontario
  • Status: Offline

Post February 11th, 2004, 3:55 pm

hmmm weird

then would it be a prob on the other persons side on y they cant view it?
  • TheSphinx
  • Newbie
  • Newbie
  • User avatar
  • Joined: Feb 11, 2004
  • Posts: 9
  • Loc: London Ontario
  • Status: Offline

Post February 11th, 2004, 3:57 pm

oh and he says his version is 6.1
if that makes a diff

Post February 11th, 2004, 4:03 pm

I don't see anything in the source that would cause problems.

:?

I don't have a copy of NS 6, but I would verify his results before changing anything.
- dM
  • TheSphinx
  • Newbie
  • Newbie
  • User avatar
  • Joined: Feb 11, 2004
  • Posts: 9
  • Loc: London Ontario
  • Status: Offline

Post February 11th, 2004, 4:11 pm

ok thx

i am just puzzled on y this would happen

i asked another person who uses both and he said he couldnt view in netscape either

oh well i guess there loss ...hehe
but still
thx again
  • ATNO/TW
  • Super Moderator
  • Super Moderator
  • User avatar
  • Joined: May 28, 2003
  • Posts: 22498
  • Loc: Pittsburgh PA
  • Status: Offline

Post February 11th, 2004, 5:06 pm

I just viewed it in Netscape 6.2 and it appears to look very close to IE 6. I remember NS 6.1 was a little buggy which is why I upgraded to NS 6.2 when it came out.

There is a problem with the code that could be causing your friends' problems. In the head area your wife has this:

Code: [ Download ] [ Select ]
<html>
<head>
<title>The Biron's Place</title>
</head>
  1. <html>
  2. <head>
  3. <title>The Biron's Place</title>
  4. </head>


That is followed by a javascript and a style sheet and then the Body tag and remainder of the document. The whole thing should be like this:

Code: [ Download ] [ Select ]
<html>
<head>
<title>The Biron's Place</title>

<script LANGUAGE="JavaScript">
function click() {
if (event.button==2) {
alert('Graphics property of Spydrs Webs. All rights reserved.');
}
}
document.onmousedown=click
// -->
</script>

<STYLE type="text/css">
<!--
BODY {
scrollbar-face-color:#8CBCBB;
scrollbar-highlight-color:#FFFFFF;
scrollbar-3dlight-color:#8CBCBB;
scrollbar-darkshadow-color:#000000;
scrollbar-shadow-color:#326966;
scrollbar-arrow-color:#326966;
scrollbar-track-color:#8CBCBB;
}
-->
</STYLE>
</head>
<body background="ltgrtile.jpg" ondragstart="returnfalse" onselectstart="returnfalse">
  1. <html>
  2. <head>
  3. <title>The Biron's Place</title>
  4. <script LANGUAGE="JavaScript">
  5. function click() {
  6. if (event.button==2) {
  7. alert('Graphics property of Spydrs Webs. All rights reserved.');
  8. }
  9. }
  10. document.onmousedown=click
  11. // -->
  12. </script>
  13. <STYLE type="text/css">
  14. <!--
  15. BODY {
  16. scrollbar-face-color:#8CBCBB;
  17. scrollbar-highlight-color:#FFFFFF;
  18. scrollbar-3dlight-color:#8CBCBB;
  19. scrollbar-darkshadow-color:#000000;
  20. scrollbar-shadow-color:#326966;
  21. scrollbar-arrow-color:#326966;
  22. scrollbar-track-color:#8CBCBB;
  23. }
  24. -->
  25. </STYLE>
  26. </head>
  27. <body background="ltgrtile.jpg" ondragstart="returnfalse" onselectstart="returnfalse">



See the difference in the location of the ending head tag?

That may or may not be the problem, but it could be. In any event, I'd recommend to your friends to either upgrade to NS7.1 or have them check into the new Firefox .80 browser here:

http://www.mozilla.org/products/firefox/


P.S. Tell your wife she did a nice job with the page.
"The web is a dominatrix. Every where I turn, I see little buttons ordering me to Submit."
Play sports pools and discuss sports topics at Boasting Rights Sports Forum
Get paid to write articles - www.associatedcontent.com
  • TheSphinx
  • Newbie
  • Newbie
  • User avatar
  • Joined: Feb 11, 2004
  • Posts: 9
  • Loc: London Ontario
  • Status: Offline

Post February 11th, 2004, 5:32 pm

thx alot ATNO/TW

i will get her to try it and let ya know if it fixed it

thx for the compliment as well
  • ATNO/TW
  • Super Moderator
  • Super Moderator
  • User avatar
  • Joined: May 28, 2003
  • Posts: 22498
  • Loc: Pittsburgh PA
  • Status: Offline

Post February 11th, 2004, 5:39 pm

*lol -- while you're at it, tell her to sign up her own handle here too. If she likes designing web pages, she might as well hang with the crowd!
"The web is a dominatrix. Every where I turn, I see little buttons ordering me to Submit."
Play sports pools and discuss sports topics at Boasting Rights Sports Forum
Get paid to write articles - www.associatedcontent.com

Post February 11th, 2004, 6:52 pm

good eye man!!!
- dM
  • ATNO/TW
  • Super Moderator
  • Super Moderator
  • User avatar
  • Joined: May 28, 2003
  • Posts: 22498
  • Loc: Pittsburgh PA
  • Status: Offline

Post February 11th, 2004, 7:00 pm

Thanks dM
"The web is a dominatrix. Every where I turn, I see little buttons ordering me to Submit."
Play sports pools and discuss sports topics at Boasting Rights Sports Forum
Get paid to write articles - www.associatedcontent.com
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post February 11th, 2004, 7:00 pm

Post Information

  • Total Posts in this topic: 21 posts
  • Users browsing this forum: No registered users and 104 guests
  • You cannot post new topics in this forum
  • You cannot reply to topics in this forum
  • You cannot edit your posts in this forum
  • You cannot delete your posts in this forum
  • You cannot post attachments in this forum
 
 

© Unmelted Enterprises 1998-2009. Driven by phpBB © 2001-2009 phpBB Group.