insideorkut.com

Ask.com comes up when I load my iPage website?

Click Here To View All Answers...


Question I have... Ask.com comes up when I load my iPage website? Hoping for any answer. 2nd question I got is.. Can someone please help me out a bit. I have looked long and hard and near and far and still am puzzled to this problem I am having. I have developed a form that works fine with Netscape 7 and IE 6 but is totally wacked in Netscape 4 and 5 (probably IE 4 and 5 as well since Microsoft only allows 1 IE browser on a pc at a time.



Http://www.coingrader.com/order.htm..

Comments (7)

I would like to know the answer too. Anyone here know what is the answer. I'll do some research and get back to you if I bump into an anything. You should email the people at iPage as they probably can help you..

Comment #1

I meant NS6...I guess my brain is totally fried right now. And I know I need to implement the value fields but as you can tell this is an htm page....not an asp page. I have yet to create the database information yet so I am leaving the fields blank until I get to that part of the development. This is for a friend's company so I am in no rush to dive into database integration. I am just trying to figure out where I went wrong with the form creation to vary so greatly from ns7 and ns6. I am sure I have the same problem with ie5 but I do not know because I am not on a computer with ie5 installed on it...

Comment #2

Just as I thought. Ns4 doesn't do the css you are trying to imply. also you have javascritp errors in ns4..

Obj has no properties..

NS6 displays it just fine. so does mozilla..

Comment #3

Thanks for the feedback. Actually I have fixed the issues with NS6. Apparently NS6 varies with how they display the Char Width field within the form area then NS7 and IE 6. Now I just need to figure out where I have an undefined area within NS4 because I have tested my revisions in all my browsers and have compatibility with all but NS4. Go figure!.

I tried the preload fix and the scrollbar fix for NS4 but nadda. Anyone have any suggestions? Or do I need to stock up on some Goody Powders....lol..

Comment #4

Actually to fix ns4 you need to have form tags. NS is very strict on having the correct tags in place where they are suppose to be. if you forget them then it errors out..

I found this in your code.

<form id="orderForm"></form>.

NS4 thinks the form is done since you closed it. just take the closing form tag off and it works. also add the closing form tag where it is suppose to be..

Also I have some suggestions. you have alot of javascript and css defines, it is best to insert them into there own file and them call them externaly. you can combine all of the css together and all the javascript functions together so it is not calling many files. that will cut the page down by 50% and it looks better and less confusing. and also you call "formBodyBigger" a lot. why don't you just make that class conform to.

All.

Table cells by just doing.

Td {.

Font-family: Verdana, Arial, "Helvetica Inserat";.

Font-size: 8px;.

Font-weight: normal;.

Color: #000000;.

}.

Than on the ones you don't want, which will be a lot less coding, just have a seperate class for those. that will also cut the size of the code down by a bunch, same with the table rows...

Comment #5

I appreciate all of your help. Its monday and time to head off to the plant to do my real job so I will tackle this later tonight when I get home. Maybe this time I'll get to it after I take a shower first...lol Thanks for all your help. Although I couldn't find the closing form tag next to the opening tag because in my script it reads the opening tag on line 692 and it's closing tag on line 1701. As far as the styl class....what can I say....I was as brindead as they come this weekend. I didnt even think about switching my hard coding with the new td tags I needed to add. What can I say...thats a plant worker for you.....ummmmm I dunno I just dig trenches for a livin.....heh Ya'll have fun and thanks for all the help.....please bring some web design jobs down to chattanooga so I can work in some a/c for a change....thank goodness it's almost winter....heh..

Comment #6

Yeah I see it is not where I said. mozilla must have added it there when I saved it..

But now I believe your problem is the css you are using. absoute positioning is not suppported in NS4 I don't believe. there might not be a lot you can do to get it to work in NS4...

Comment #7

Hey I appreciate your help. I actually figured out where the problem in the css was so I now have a page working in ns4. I just have not uploaded it yet. Actually absolute positiong is supported in ns4. The problem was in utilizing the class attribute as a means of determing the css to be used. Instead I decided to use java script and then use the id attribute which is backward browser compatible.

Time to get back to my wife before she divorces me and takes my minimum wage collections....lol..

Comment #8


This question was taken from a support group/message board and re-posted here so others can learn from it.