473,581 Members | 2,338 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Design difference Firefox<->IE

roN
Hi,

I'm creating a Website with divs and i do have some troubles, to make it
looking the same way in Firefox and IE (tested with IE7). I checked it with
the e3c validator and it says: "
This Page Is Valid XHTML 1.0 Transitional!" but it still wouldn't look the
same.
It is on http://www.dvdnowkiosks.com/new/theproduct.php scroll down and
recognize the black bottom bar when you go ewith firefox(2.0) which isn't
there with IE7. Why does it appear in ff?
Thank you for suggestions!

PS: Yeah, I know. I took dirty Dreamweaver as help to design this
div-layered page. It was a quick and dirty solution and i try to get it done
nicely/cleanly by hand now... thank you for your help!

roN
Dec 14 '06 #1
17 4837

roN wrote:
I'm creating a Website with divs
Good idea, but in point of fact you're not. That page is crappy old
1990's markup, with mis-used <table>, the stretchy spacer GIF and
Dreamweevil's favourite JS-rollovers. There is some CSS, but it's badly
thought out and adds little to the page, other than partial colour
settings and inappropriate font sizes.

Typical Dreamweevil output, in fact.
i do have some troubles, to make it
looking the same way in Firefox and IE (tested with IE7).
Why would you want to do that? Will you also insist that I buy a
smaller monitor, so that I can share the same tiny-screen experience as
others?

This is the Web. You the site publisher offer "documents" and I, the
viewer, feed those into my favourite display device and make the best I
can of them - according to the particular foibles of my chosen display.
Right now I'm looking at them on a desktop, last night I was web
browsing on my phone. dorayme of course uses the Standard Martian Sign
Language and a typical 14-tentacle touch browser. I don't _want_ them
all to be the same (particularly the tentacle sign for
"display:in line-probe;" )

Get off this whole "Must look identical everywhere" bandwagon. It's a
bad idea, it's incredibly hard work, it's usually impossible, and the
only person who will even notice is a web coder sitting there with two
different browsers open alongside each other.

Why _should_ it look identical? _WHY_ ?

Design instead so that "it works everywhere". This is a lot broader,
and a lot easier, target to achieve.

This Page Is Valid XHTML 1.0 Transitional!" but it still wouldn't look the
same.
"Looks the same" depends on a whole lot more than mere validity,
although it's a good start.

I would question though why you're using either XHTML or Transitional.
Do it in 4.01 Strict instead.

PS: Yeah, I know. I took dirty Dreamweaver as help to design this
div-layered page. It was a quick and dirty solution and i try to get it done
nicely/cleanly by hand now...
It's quicker and easier to do it the easy way first. Much cheaper too.

Dec 14 '06 #2
On Wednesday 13 December 2006 20:59, roN [ex*****@example .com] wrote in
message <tQZfh.473016$1 T2.16636@pd7urf 2no>
Hi,

I'm creating a Website with divs and i do have some troubles, to make it
looking the same way in Firefox and IE (tested with IE7). I checked it
with the e3c validator and it says: "
This Page Is Valid XHTML 1.0 Transitional!" but it still wouldn't look the
same.
It is on http://www.dvdnowkiosks.com/new/theproduct.php scroll down and
recognize the black bottom bar when you go ewith firefox(2.0) which isn't
there with IE7. Why does it appear in ff?
Thank you for suggestions!
Add style="margin-top:0" within the opening <ptag which contains the
bottom.png image. This can be done inline (as below) or in a stylesheet.

<td colspan="3"><p align="left" style="margin-top:0"><img
src="images/bottom.png" alt="bottom" width="819" height="74" /></p>

If you have Firefox2 you should also be able to install the excellent web
developer tools which, among other things, allows you to highlight various
page elements. It helps a lot with page layouts not behaving how you
expected.
Dec 14 '06 #3
On 2006-12-13, roN <ex*****@exampl e.comwrote:
Hi,

I'm creating a Website with divs and i do have some troubles, to make it
looking the same way in Firefox and IE (tested with IE7). I checked it with
the e3c validator and it says: "
This Page Is Valid XHTML 1.0 Transitional!" but it still wouldn't look the
same.
It is on http://www.dvdnowkiosks.com/new/theproduct.php scroll down and
recognize the black bottom bar when you go ewith firefox(2.0) which isn't
there with IE7. Why does it appear in ff?
It's the default margin on the <paround the <imgelement. Either set
that p's margin to 0, or just get rid of the <paltogether.

Then you will notice the width of the image at the bottom doesn't quite
match the width of the stuff above it the way Dreamweevil obviously
intended it to. But I expect you'll sort that out along with doing it
nicely/cleanly by hand :)
PS: Yeah, I know. I took dirty Dreamweaver as help to design this
div-layered page. It was a quick and dirty solution and i try to get it done
nicely/cleanly by hand now... thank you for your help!

roN
Dec 14 '06 #4
roN
"Andy Dingley" <di*****@codesm iths.comwrote in message
news:11******** *************@7 3g2000cwn.googl egroups.com...
>
roN wrote:
>I'm creating a Website with divs

Good idea, but in point of fact you're not. That page is crappy old
1990's markup, with mis-used <table>, the stretchy spacer GIF and
Dreamweevil's favourite JS-rollovers. There is some CSS, but it's badly
thought out and adds little to the page, other than partial colour
settings and inappropriate font sizes.

Typical Dreamweevil output, in fact.
>i do have some troubles, to make it
looking the same way in Firefox and IE (tested with IE7).

Why would you want to do that? Will you also insist that I buy a
smaller monitor, so that I can share the same tiny-screen experience as
others?

This is the Web. You the site publisher offer "documents" and I, the
viewer, feed those into my favourite display device and make the best I
can of them - according to the particular foibles of my chosen display.
Right now I'm looking at them on a desktop, last night I was web
browsing on my phone. dorayme of course uses the Standard Martian Sign
Language and a typical 14-tentacle touch browser. I don't _want_ them
all to be the same (particularly the tentacle sign for
"display:in line-probe;" )

Get off this whole "Must look identical everywhere" bandwagon. It's a
bad idea, it's incredibly hard work, it's usually impossible, and the
only person who will even notice is a web coder sitting there with two
different browsers open alongside each other.

Why _should_ it look identical? _WHY_ ?

Design instead so that "it works everywhere". This is a lot broader,
and a lot easier, target to achieve.

>This Page Is Valid XHTML 1.0 Transitional!" but it still wouldn't look
the
same.

"Looks the same" depends on a whole lot more than mere validity,
although it's a good start.

I would question though why you're using either XHTML or Transitional.
Do it in 4.01 Strict instead.

>PS: Yeah, I know. I took dirty Dreamweaver as help to design this
div-layered page. It was a quick and dirty solution and i try to get it
done
nicely/cleanly by hand now...

It's quicker and easier to do it the easy way first. Much cheaper too.
]Yeah I like your posting, can i give your # to my boss ;)
Thank you, it might help for future development! (I'm sure he likes to
design me something again one day... ;) )
Dec 14 '06 #5
In article
<11************ *********@73g20 00cwn.googlegro ups.com>,
"Andy Dingley" <di*****@codesm iths.comwrote:
dorayme of course uses the Standard Martian Sign
Language and a typical 14-tentacle touch browser. I don't _want_ them
all to be the same (particularly the tentacle sign for
"display:in line-probe;" )
When I came to earth and saw the web sites here, I honestly
thought the (hard-wired) browser machine I brought with me had
gotten heat damaged on the way in... Then it became clear that
not everyone belonged to html newsgroups like this or alt.html
and I stopped hammering it with this bit of 4x2" block of wood I
keep handy...

Get off this whole "Must look identical everywhere" bandwagon. It's a
bad idea, it's incredibly hard work, it's usually impossible, and the
only person who will even notice is a web coder sitting there with two
different browsers open alongside each other.

Why _should_ it look identical? _WHY_ ?
Because of that little tyrant in every earthling psyche...

--
dorayme
Dec 14 '06 #6
"Andy Dingley" <di*****@codesm iths.comwrote in message
news:11******** *************@7 3g2000cwn.googl egroups.com...
....
Get off this whole "Must look identical everywhere" bandwagon. It's a
bad idea, it's incredibly hard work, it's usually impossible, and the
only person who will even notice is a web coder sitting there with two
different browsers open alongside each other.

Why _should_ it look identical? _WHY_ ?
Because it's a commercial site. "Identical" means you're able to present the
*exact* impression you want to give and guide the notoriously fickle surfing
consumer along your sales process. When all is said and done a commercial
site's purpose is to drive revenue - not ensure that the most obscure means
of browsing receive equal treatment.

In my case, 99.82% of our site's visitor view using IE, FF/Moz, Netscape,
Safari and Opera. Safe to say not a lot of people are using their
cellphones shopping for $5K vacation packages. I really couldn't care less
about the 0.18% of visitors who arrive other via means. Put bluntly, I'll
happily ignore a cell phone surfer if it means a minisculy better shot at
converting a sale from the next 554 'conventional' visitors to my site. And
the fact the OP's product is B2B-oriented will make my 0.18% look monstrous
compared to the non-PC usage statistics he'll see.

Non-commercial sites (i.e. governmental, research, education, etc.) and a
subset of commercial sites, namely Pagerank 8+ bohemoths, have the luxury of
designing around a "content is king" philosophy. For the rest of us, it's
all in the presentation. The vast majority of sites have about 3 seconds to
instill a sense of confidence in the consumer that *this* is the site
they want to be on. Knowing exactly what 99%+ of your visitors is going to
see makes that 3-second objective infinitely easier.

The consumer doesn't care if your site was handcoded to exact W3 specs or
made in FrontPage 98. They couldn't care less about XHTML, DTD-Strict,
tabled layout versus CSS, etc. Neither should the designer, unless that
designer is working for a client who wants it. Me... I work on my own site
only. I've long abandoned tabled-layouts but I don't care if anything
validates.

I'm always boggled by the number of small business sites I see that boast
all their "Validates In...!!!" links in their footers, yet have a marginal
(at best) call to action.


Dec 14 '06 #7

S.T. wrote:
Why _should_ it look identical? _WHY_ ?

Because it's a commercial site.
Again - Why? What's the commercially valuable advantage that this
conveys?
"Identical" means you're able to present the
*exact* impression you want to give
I've never seen a commercial site that had an "exact impression". To be
pedantic, I've seen an awful lot of _precise_ specification of sites
(.psd is the culprit) and very little _accuracy_ to it. Why is it so
crucial that a border is 3.5pixels wide when it only has that size in
the first place because of the caffeine-twitching mouse of some
pointybearded dezyner. These "decisions" that must be so vitally
preserved aren't even conscious decisions, they're random brushstrokes
in Potatoshop.

Again - you can't do identical, even if you try. FF on my large and
small screen machines varies more than FF vs. IE does. What are you
going to do, open a new fixed-size browser window?

When all is said and done a commercial
site's purpose is to drive revenue - not ensure that the most obscure means
of browsing receive equal treatment.
Yes, do things that are commercial valuable. Pixel-consistency isn't.
Nor is using sloppy techniques that exclude customers you can easily
support with competent standards-based work.

In my case, 99.82% of our site's visitor view using IE, FF/Moz, Netscape,
Safari and Opera.
Sure. 99+% easily, not counting bots. So how many of those use a
Gecko-like renderer and how many are still stuck with a Mosaic
derivative? The discussion here is about differences at that level, not
the obscure stuff. 40% of domestic browsers being FF in some EU
countries, this isn't an ignorable fraction.

>Safe to say not a lot of people are using their
cellphones shopping for $5K vacation packages.
How on earth do you predict that?

Would you be so ready to dismiss $5k short-notice business-class air
travel?
I'll
happily ignore a cell phone surfer if it means a minisculy better shot at
converting a sale from the next 554 'conventional' visitors to my site.
So what evidence do you have that you even _need_ to ignore a mobile
device ?
I'm particularly curious about your logic that deliberately breaking
standards will improve your conversion rates !

Non-commercial sites (i.e. governmental, research, education, etc.) and a
subset of commercial sites, namely Pagerank 8+ bohemoths, have the luxury of
designing around a "content is king" philosophy.
We all have this "luxury". Content is the thing that drives traffic,
damn near the _only_ thing that drives traffic.

There was a famous retail site that established the principle of
"design is king". It was called boo.com

The vast majority of sites have about 3 seconds to
instill a sense of confidence in the consumer that *this* is the site
they want to be on.
Right. So <tablemarkup and a few <font>s is how to do it?
The consumer doesn't care if your site was handcoded to exact W3 specs or
made in FrontPage 98.
The customer cares if it works _for_them_. The way to achieve this is
to use the standards. It's quick, it's cheap, it's applicable to a
broad range of targets and it _works_.

They couldn't care less about XHTML, DTD-Strict,
tabled layout versus CSS, etc. Neither should the designer, unless that
designer is working for a client who wants it.
A designer who doesn't understand this isn't a competent designer.

I'm always boggled by the number of small business sites I see that boast
all their "Validates In...!!!" links in their footers, yet have a marginal
(at best) call to action.
So you claim that bad commercial design is caused by good technical
implementation ? An interesting theory....

Dec 14 '06 #8
In article <45************ ***********@new s.sonic.net>,
"S.T." <an**@anon.comw rote:
"Andy Dingley" <di*****@codesm iths.comwrote in message
news:11******** *************@7 3g2000cwn.googl egroups.com...
...
Get off this whole "Must look identical everywhere" bandwagon. It's a
bad idea, it's incredibly hard work, it's usually impossible, and the
only person who will even notice is a web coder sitting there with two
different browsers open alongside each other.

Why _should_ it look identical? _WHY_ ?

Because it's a commercial site. "Identical" means you're able to present the
*exact* impression you want to give and guide the notoriously fickle surfing
consumer along your sales process.
There is a big gap in your argument. Two different website makers
could make equally good websites for a commercial venture. So the
money does not come rolling in just because the spenders see
exactly one thing. Any of a number of things, well made, tailored
to the business, will do. Identity is not a part of this story.
So you need to say more why you think it matters so greatly if
different people on different platforms and browsers and screens
and ISP speed connections have different "experience s". You need
to show how the same (difficult to achieve as AD points out)
experience is so important.

--
dorayme
Dec 14 '06 #9
S.T. wrote:
>
Why _should_ it look identical? _WHY_ ?

Because it's a commercial site.

Again - Why? What's the commercially valuable advantage that this
conveys?
The advantage is time. Opportunity cost. Whatever you want to term it.
>"Identical" means you're able to present the
*exact* impression you want to give

I've never seen a commercial site that had an "exact impression". To be
pedantic, I've seen an awful lot of _precise_ specification of sites
(.psd is the culprit) and very little _accuracy_ to it. Why is it so
crucial that a border is 3.5pixels wide when it only has that size in
the first place because of the caffeine-twitching mouse of some
pointybearded dezyner. These "decisions" that must be so vitally
preserved aren't even conscious decisions, they're random brushstrokes
in Potatoshop.
First off, I have no idea what "dezyner" means.

I'm not worried about a few pixels here and there. If the site isn't
dead-on exact across browsers, doesn't really matter. Safari's giving some
div 2px of margin that other browsers aren't? So what? Provided it doesn't
*look* broken because of that minor shift, not much point worrying about it.
A few pixels here or there is unlikely to make-or-break a surfer's opinion
or experience. Anything that appears broken (i.e. a 2px contrasting streak
across the middle that doesn't look like it belongs there) is a huge cause
for concern as it doesn't convey a sense of reliability and consistency.
Again - you can't do identical, even if you try. FF on my large and
small screen machines varies more than FF vs. IE does. What are you
going to do, open a new fixed-size browser window?
I'm going to design based on an 800x600 browser, which covers 97%+ of my
audience if I trust Google Analystics. These are the glory days of web
design, as opposed to 2001 when 640px still had it's place. 800px is just
about perfect as I can keep a design compact enough to keep various eye-cues
within range of eachother, yet still present content with enough width to
entice (hopefully) reading said content while putting vital navigation
alongside.

Should the browser's width grossly exceed 800px, no problem as design will
still pull the eye where I want it to. Smaller than 800px (or more like
700px, really)... I can rest easy that dominant sites have that surfer used
to such inconveniences (with folks like the L.A. or N.Y. Times taking it a
step further and designing based on 1024)

Bottom line... fluid layouts for competive commercial websites are dead.
Unless you're Amazon.com.
>When all is said and done a commercial
site's purpose is to drive revenue - not ensure that the most obscure
means
of browsing receive equal treatment.

Yes, do things that are commercial valuable. Pixel-consistency isn't.
Nor is using sloppy techniques that exclude customers you can easily
support with competent standards-based work.
What you term "sloppy" is irrelevant. All things being equal, 'clean' code
is preferred over 'sloppy' code. But 99.5%+ of your audience really doesn't
care. If you can whip out a "sloppy" page in two hours using DW versus 4
hours handcoding validating markup, and use those spare two hours focusing
on your layout and visual cues to better your conversions from 2.1% to 2.15%
you're far off better in an economic sense. The overwhelming majority of
your audience uses browsers than can compensate for imperfect markup and
your improvements to marketing is pure gravy. W3C spitting out it's seal of
approval does exactly nothing for your bottom line.
>In my case, 99.82% of our site's visitor view using IE, FF/Moz, Netscape,
Safari and Opera.

Sure. 99+% easily, not counting bots. So how many of those use a
Gecko-like renderer and how many are still stuck with a Mosaic
derivative? The discussion here is about differences at that level, not
the obscure stuff. 40% of domestic browsers being FF in some EU
countries, this isn't an ignorable fraction.
I design so IE6+, FF1+ and Safari-whatever look like I wish. That's some 95%
of my market. I'm not really manipulating the DOM, so I'm fairly
comfortable the other 4.5% is probably right. Cover my bases with Safari
and IE's quirks and it's pretty likely it looks clean across the board.
Again, it's a "choose your battles wisely" situation. I would prefer to
KNOW it looks correct on all modern browsers but I'm not going to test the
padding of every float to ensure it's dead-on for some 0.3% market share
deviant. That time's better spent polishing copy for surfers or adding
content the Slurps and Googlebots will pick up.
>>Safe to say not a lot of people are using their
cellphones shopping for $5K vacation packages.

How on earth do you predict that?

Would you be so ready to dismiss $5k short-notice business-class air
travel?
If I really believed there was an economic model for cell/PDA surfers at my
company (which I don't, but that's not to say it'll always be the case) I'd
develop a WAP site or whatever for it. I've never bothered, but I'm almost
certain between .htaccess, httpd.conf and server-side scripting there's a
very reliable means to deliver content to these users without forcing me to
design for my bread-and-butter surfers under some sort of lowest common
denominator logic.

I've done a couple WML apps before. It's pretty trivial. If I thought the
market was there, I would certainly do it. I've no doubt over time I will,
but there's no way I'm altering presentation for 99.8% of my audience to do
so.
>I'll
happily ignore a cell phone surfer if it means a minisculy better shot at
converting a sale from the next 554 'conventional' visitors to my site.

So what evidence do you have that you even _need_ to ignore a mobile
device ?
I'm particularly curious about your logic that deliberately breaking
standards will improve your conversion rates !
I'm not saying deliberately write code that doesn't validate. I'm saying
there's infinitely better ways for most designers to spend their time than
worrying about W3 bitching you have a <ptag without a closing version.
For all the misery non-uniform browsers put us through, at least take solace
in the fact they all compensate for the minor 'errors' that may exist in our
code and take advantage of that time to better your site's conversion
performance.
>Non-commercial sites (i.e. governmental, research, education, etc.) and a
subset of commercial sites, namely Pagerank 8+ bohemoths, have the luxury
of
designing around a "content is king" philosophy.

We all have this "luxury". Content is the thing that drives traffic,
damn near the _only_ thing that drives traffic.
Content is crap in most business' websites, with the glaring exception of
SEO which requires an ungodly delicate balancing act between the two.

The most profound error most designers make it believing visitors on their
site are interested in their content. They're not. They're skeptical to
begin with and they know exactly where their Back button is. They are on a
site to find an answer or solution to their probelm. And they want that
answer or solution FAST. The designers job is to make it painfully clear
that what they are seeking can be found where they ended up.

If you can detail 99% of a product in 5 paragraphs or 70% of the same
product in 5 bullet points or 5 sentences, you're MUCH better off spitting
out the bullet points, with a small link to 'details' to cover the other 30%
that most consumers will never touch, and getting on to the next step in
solving that consumer's problem.

Why? Because nearly all your audience will never even ponder reading 5
paragraphs despite the fact that your content may be more useful to them
than any other site they'll find on the topic. Unless you're a proven
internet commodity they simply won't risk wasting 75 seconds of their time
for you to prove yourself. THEY WON'T READ IT. Period. Give them 5 bullets
they can read in 12 seconds and you've got a shot. Combine that with visual
cues that you know are in within eyesight of your bullets, and these cues
solve the next next solution or answer they now seek, and you really start
to have a chance for a conversion.

Design some fluid layout that caters to every screen ratio on the planet and
you're now risking them getting the answer to their first question from you
and moving elsewhere to solve their new problem. The surfer has no loyalty
to your site, despite it's ability to answer one question.
There was a famous retail site that established the principle of
"design is king". It was called boo.com

>The vast majority of sites have about 3 seconds to
instill a sense of confidence in the consumer that *this* is the site
they want to be on.

Right. So <tablemarkup and a few <font>s is how to do it?
If it's faster for someone to design like that, and that freedom allows them
to dedicate more time to focus on conversion techniques, then most
certainly... yes, that's how to do it.
>The consumer doesn't care if your site was handcoded to exact W3 specs or
made in FrontPage 98.

The customer cares if it works _for_them_. The way to achieve this is
to use the standards. It's quick, it's cheap, it's applicable to a
broad range of targets and it _works_.
Again, time is a fixed commodity. In most cases you're better off creating
a better experience for 90% of your audience than creating a neutral
experience for 100%. In current web design scenarios it's not even close as
you can design to cater towards 99%+ of your audience.
>They couldn't care less about XHTML, DTD-Strict,
tabled layout versus CSS, etc. Neither should the designer, unless that
designer is working for a client who wants it.

A designer who doesn't understand this isn't a competent designer.
Again, 99% of the surfers have no idea who's a 'competent' designer and
wouldn't care if they knew. Focus solely on those 99% of your surfers and
solving their problems, without the slightest regard to whether your site
will stand up to criticism in a CSS newsgroup, and you'll be in much better
shape.
>I'm always boggled by the number of small business sites I see that boast
all their "Validates In...!!!" links in their footers, yet have a
marginal
(at best) call to action.

So you claim that bad commercial design is caused by good technical
implementation ? An interesting theory....
Clearly that's not what I said. My point was priorities are totally out of
whack in far too many cases. I think you know what I was saying however...
perhaps you just don't like people questioning your opinions. Or perhaps
you do. Personally I find this thread an interesting exercise.


Dec 14 '06 #10

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

Similar topics

1
1622
by: catchanu | last post by:
Hi friends, In my project, I am generating an asp file that collects the data by querying database and puts it into xml document. XSL is applied to XML and this report in generated as HTML by IE using vb scripts CreateObject(). This is how the flow is Generate an ASP , write query to get the data, put them into XML document and call...
5
14646
by: Charles Blaquière | last post by:
As part of my explorations in liquid design, I'm exploring ways to use the overflow: hidden property -- when browser windows become too narrow, I want (some) images to get cropped rather than have the layout break up. In some cases, losing parts of images can be an interesting option. http://www.hebig.org/blog/titlepic.php was the first...
3
2862
by: Markus Fischer | last post by:
Hi, I'm experiencing a wierd problem with IE 6 in Windows with two _slightly_ different Version. Give the following HTMl-Code, ideally the output of offsetTop should be "105"; a few pixel plus minus would still be ok, whyever. I've tested this successfully on 6.0.2800.1106 on a german W2KPro machine, also with 6.0.2800.1106 on a german...
4
5406
by: Luke Venediger | last post by:
Hi there, Please help. I cannot get a javascript function to be called from an img tag when the page loads. Here is a snippet of my code, and I'm trying to call the MM_nbGroup function, but this is not working in FireFox, only IE. My function is there (so not missing). <img src="Images/BTN_profile_over.jpg" name="profile" border="0"
25
43352
by: Steal | last post by:
Hi at all I try to validate this page using the link: http://validator.w3.org/ but it return that this is not a valid HTML 4.01 page please where is it error? Steil <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <html> <head>
3
3345
by: jimmygoogle | last post by:
I posted earlier with a scope problem. I think I resolved it in IE but in Firefox it still exists. Anyone have any ideas/experience with this? I attached my code sorry it is so long. You can cut/paste it into 2 files and run it to see what I mean. ###############menu.html############### <html> <body> <script type="text/javascript">
9
1524
by: toby989 | last post by:
Hi All Does anyone have an idea why firefox applies the spec in the CSS to the contents but IE does not? Thanks. Toby
1
1834
by: Zhang Weiwu | last post by:
Hello. I know a lot of different ways to write css that work for IE but ignored by Fx, but is there a way to let IE process XSLT but leaving Fx completely ignore the XSLT? The classic filter doesn't seem to work: <!--><?xml-stylesheet type="text/xsl" href="my.xsl"?><!--> The above seems to be ignored by both IE and Firefox P.S. In the...
1
3846
by: Paul Gorodyansky | last post by:
Hello! I have a drop-down list, 13 options there. If I click on it, Firefox shows all 13 items while Internet Explorer shows only 11 and a scroll bar - even if it's in the middle of a page and there is a lot of real estate below that. Is 11 a 'magic number' for IE? Is there a way to force IE to show the entire list?
15
2211
by: Stapes | last post by:
Hi I am new to javascript. I have a website running in .net, that has a load of these in the <head section of the default.aspx page, which bumps the page size up to 371kb. However, many of these are only used in one 'skin', or page in the system. Is there any way I can put these scripts elsewhere, so they are only loaded when they are...
0
7862
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
8144
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8301
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7894
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
6551
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5670
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3803
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3820
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1132
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.