473,405 Members | 2,344 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

Problems between Mozilla 1.4 and IE6

Take a look at these two images. They are both using the same code yet
see the differences? What would cause that and how to make them both
look like the IE6 page?

Mozilla screenshot: http://www.amishmkt.com/mozilla_1.4.gif
IE screenshot: http://www.amishmkt.com//ie6.gif

Here is the site: http://www.amishmkt.com/index.html
Jul 20 '05 #1
8 2024
In article <bi************@ID-139074.news.uni-berlin.de>, ng*@tbdata.com
says...
Mr. Clean wrote:
...

Here is the site: http://www.amishmkt.com/index.html


declare which character encoding you would like browsers to use

http://validator.w3.org/check?uri=ht...m%2Findex.html

then revisit the validator and fix the errors. till you do that your page
is forcing browsers to guess what to do.

Fixed the encoding and all the errors but the amibigous "already defined"
errors for my id's "dkred_14" and "description". How to get rid of those? Use
in-line styles?

Still exhibits the problem...

here's the mozilla screenshot:
http://www.amishmkt.com/mozilla_1.4_2.gif

and the IE screenshot:
http://www.amishmkt.com/ie6_2.gif
Jul 20 '05 #2
Mr. Clean pounced upon this pigeonhole and pronounced:
In article <bi************@ID-139074.news.uni-berlin.de>, ng*@tbdata.com
says...
Mr. Clean wrote:
...

Here is the site: http://www.amishmkt.com/index.html


At first, I thought this was a one-page web site. (Why would a business
site be only one page?)

Then, in the source, I found your JavaScript menu. Do you realize that
with such a menu you will be losing about 20% of your visitors? Including
that most important googlebot? Use HTML so we can all see it.

Firebird, no js, no popups, W2k.

--
-bts
-This space intentionally left blank.
Jul 20 '05 #3
Mr. Clean wrote:
In article <bi************@ID-139074.news.uni-berlin.de>,
ng*@tbdata.com says...
Mr. Clean wrote:
...

Here is the site: http://www.amishmkt.com/index.html
declare which character encoding you would like browsers to use

http://validator.w3.org/check?uri=ht...m%2Findex.html
then revisit the validator and fix the errors. till you do that
your page is forcing browsers to guess what to do.

Fixed the encoding and all the errors but the amibigous "already
defined" errors for my id's "dkred_14" and "description". How to get
rid of those? Use in-line styles?


no, use class
Still exhibits the problem...


#banner {
background:#f0e0c8;
height:181px;
border:3px solid #996633;
voice-family: "\"}\"";
voice-family: inherit;
height:39px;
width: 586px;
}
html>body #banner {
height:39px;
}

you appear to be serving IE a height of 181px and Moz a height of 39px

check in Opera too.

--
William Tasso - http://WilliamTasso.com
Jul 20 '05 #4
In article <bi************@ID-139074.news.uni-berlin.de>, ng*@tbdata.com
says...
Mr. Clean wrote:
In article <bi************@ID-139074.news.uni-berlin.de>,
ng*@tbdata.com says...
Mr. Clean wrote:
...

Here is the site: http://www.amishmkt.com/index.html

declare which character encoding you would like browsers to use

http://validator.w3.org/check?uri=ht...m%2Findex.html
then revisit the validator and fix the errors. till you do that
your page is forcing browsers to guess what to do.

Fixed the encoding and all the errors but the amibigous "already
defined" errors for my id's "dkred_14" and "description". How to get
rid of those? Use in-line styles?


no, use class

Tried that, loses all the styles in IE for sure.

Still exhibits the problem...


#banner {
background:#f0e0c8;
height:181px;
border:3px solid #996633;
voice-family: "\"}\"";
voice-family: inherit;
height:39px;
width: 586px;
}
html>body #banner {
height:39px;
}

you appear to be serving IE a height of 181px and Moz a height of 39px

Whoa, didn't see that one.
check in Opera too.


Don't have it installed, yet.

Jul 20 '05 #5
In article <0m****************@twister.nyroc.rr.com>,
a.*********@nowhere.invalid says...
Mr. Clean pounced upon this pigeonhole and pronounced:
In article <bi************@ID-139074.news.uni-berlin.de>, ng*@tbdata.com
says...
Mr. Clean wrote:
> ...
>
> Here is the site: http://www.amishmkt.com/index.html


At first, I thought this was a one-page web site. (Why would a business
site be only one page?)

Then, in the source, I found your JavaScript menu. Do you realize that
with such a menu you will be losing about 20% of your visitors? Including
that most important googlebot? Use HTML so we can all see it.

Firebird, no js, no popups, W2k.

Still under construction...

Currently working on CSS alternative to the JS rollovers.
Jul 20 '05 #6
In article <0m****************@twister.nyroc.rr.com> in
comp.infosystems.www.authoring.stylesheets, Beauregard T. Shagnasty
<a.*********@nowhere.invalid> wrote:
Then, in the source, I found your JavaScript menu. Do you realize that
with such a menu you will be losing about 20% of your visitors?


Citation, please? I'd love to present it to bosses who want pages to
use Javascript navigation.

--
Stan Brown, Oak Road Systems, Cortland County, New York, USA
http://OakRoadSystems.com/
HTML 4.01 spec: http://www.w3.org/TR/html401/
validator: http://validator.w3.org/
CSS 2 spec: http://www.w3.org/TR/REC-CSS2/
validator: http://jigsaw.w3.org/css-validator/
Jul 20 '05 #7
Stan Brown pounced upon this pigeonhole and pronounced:
In article <0m****************@twister.nyroc.rr.com> in
comp.infosystems.www.authoring.stylesheets, Beauregard T. Shagnasty
<a.*********@nowhere.invalid> wrote:
Then, in the source, I found your JavaScript menu. Do you realize that
with such a menu you will be losing about 20% of your visitors?


Citation, please? I'd love to present it to bosses who want pages to
use Javascript navigation.


Just what I've read in these various groups. Some say 10%, some say 20%...
This page says 13% for July 03.
http://www.w3schools.com/browsers/browsers_stats.asp
All of the charts on this page are followed by the usual disclaimers.

So, losing 13% of visitors is not a good idea. <g>

--
-bts
-This space intentionally left blank.
Jul 20 '05 #8
On Fri, 22 Aug 2003 20:40:10 GMT, Mr. Clean wrote in
comp.infosystems.www.authoring.stylesheets:
> Fixed the encoding and all the errors but the amibigous "already
> defined" errors for my id's "dkred_14" and "description". How to get
> rid of those? Use in-line styles?


no, use class

Tried that, loses all the styles in IE for sure.


An id tag can only be used *ONCE* per page, not like you do now with
your <p = id"description">.

So, you will have to start using classes for the <p>.

Marcel
--
http://www.fantasy-freak.com
Jul 20 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Robert William Vesterman | last post by:
I'm having problems with the display of forms, using CSS, in Mozilla Firebird (and probably other Mozilla-based browsers). I have boiled it down to a fairly small example page, which not only...
12
by: Cameron McCormack | last post by:
Hi. I have a couple of problems with borders, where the appearance in IE and Mozilla differs. In my test file http://mcc.id.au/~cam/border.html I have a large double border-left on the...
15
by: Viken Karaguesian | last post by:
Hello all, I'm having a problem with DOCTYPES. Until now, I haven't been specifying doctypes. I want to start specifying doctypes, but am having trouble doing so. Whenever I specify a doctype,...
32
by: jp29 | last post by:
My take on problems composing, serving and rendering XHTML documents/web pages: 1. Typical conscientious web authors are producing XHTML documents (Web pages) that feature valid Markup and with...
1
by: cwdjrxyz | last post by:
I am now writing many new pages in xhtml 1.1. They are served as true xhtml by setting the mime type of the server to application/xhtml+xml for the .xhtml extension. Since IE6 and some earlier...
0
by: Chris Schremser | last post by:
I have a question regarding embedded controls in IE. We are looking to replace a small VB ActiveX control with something written in C#. We have written the control and it instantiates correctly...
7
by: Andrea | last post by:
Hi there - I'm hoping someone can help me; I've been struggling with this for a few days! :-) I have a webpage that is comprised of many forms containing questions. As the user answers one...
1
by: trevors_decoy | last post by:
Hi, apologies if this sort of query pops up all the time - I did spend a while searching the archives first... My website tries to protect my email address from the spam harvesters by...
4
by: jwwest | last post by:
Hello all, I've been building a simple site based on XML, XSL and CSS in order to help me learn those technologies better. However, building a tableless page is brand new to me so I've run into...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.