473,405 Members | 2,160 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.

Any explanations as to why IE won't do it right?

http://somestuff.batcave.net/menu2.html

Attempting to overcome the problem with span and IE.
As you'll see in IE, the span block appears totally within the boundaries of
the "thumbs" division and is cut off from view.
In Firefox, the span block is shown on top of the menu with the absolute
position based upon the "home" location.

What can be done to correct this so that the span block will show where I
want it?

This method would be nice to use so that those with JS turned off will still
see the larger images.

Jul 23 '05 #1
8 1104
Richard wrote:
http://somestuff.batcave.net/menu2.html

Attempting to overcome the problem with span and IE.
As you'll see in IE, the span block appears totally within the boundaries of
the "thumbs" division and is cut off from view.
In Firefox, the span block is shown on top of the menu with the absolute
position based upon the "home" location.

What can be done to correct this so that the span block will show where I
want it?

This method would be nice to use so that those with JS turned off will still
see the larger images.


For a start, you've got a <P> inside a <SPAN> element. Bad.

Secondly, this is a horrible effect.

--
Oli
Jul 23 '05 #2
rf
"Richard" <An*******@127.001> wrote
http://somestuff.batcave.net/menu2.html

Attempting to overcome the problem with span and IE.
As you'll see in IE, the span block appears totally within the boundaries of

What "span block"?

In any case span is, by default, an inline element so to call it a span
"block" is totally misleading.

Ah I see you have changed its display property to block with CSS, presumably
because you can't use a div there.

This idea was originally published here by brucie IIRC. Yep, it was.
the "thumbs" division and is cut off from view.
In Firefox, the span block is shown on top of the menu with the absolute
position based upon the "home" location.
Didn't I answer this yesterday? Go over to the recommendation and read up on
positioning (which you claim to know So Much about) and containing elements.
Not parent elements. Not the root element of the DOM. Containing elements.
Then consider IE's broken box model re same.
What can be done to correct this so that the span block will show where I
want it?


Shove it in the toilet.

This page is totally stuffed in both IE and FF.
Jul 23 '05 #3
Richard wrote:
http://somestuff.batcave.net/menu2.html
"<noscript><h2>Your javascript is turned off. Links to images will not
work.<br>
You will be redirected to another page.</h2></noscript>"

How are you going to redirect if JavaScript is off? <lol>
Attempting to overcome the problem


You'll never be able to do that. Find another hobby.

--
-bts
-This space intentionally left blank.
Jul 23 '05 #4
On Fri, 28 Jan 2005 00:00:03 -0500 Beauregard T. Shagnasty wrote:
Richard wrote:
http://somestuff.batcave.net/menu2.html "<noscript><h2>Your javascript is turned off. Links to images will not
work.<br>
You will be redirected to another page.</h2></noscript>" How are you going to redirect if JavaScript is off? <lol>
Would you like to see how my learned friend of wit?
No javascript required to redirect ya know.
Oh but RtS is just way to stoopid to figure that one out.

Attempting to overcome the problem

You'll never be able to do that. Find another hobby. --
-bts
-This space intentionally left blank.

Jul 23 '05 #5
Richard wrote:
On Fri, 28 Jan 2005 00:00:03 -0500 Beauregard T. Shagnasty wrote:
How are you going to redirect if JavaScript is off? <lol>
Would you like to see how my learned friend of wit? No javascript
required to redirect ya know.


Yes, I would like to see it.

There are several ways to do a redirect when JavaScript is off (or
on), but none would apply to the statement on your page.
Oh but RtS is just way to stoopid to figure that one out.


Thanks for admitting that. :-)

--
-bts
-This space intentionally left blank.
Jul 23 '05 #6

Richard wrote:
On Fri, 28 Jan 2005 00:00:03 -0500 Beauregard T. Shagnasty wrote:
Richard wrote:
http://somestuff.batcave.net/menu2.html
"<noscript><h2>Your javascript is turned off. Links to images will

not work.<br>
You will be redirected to another page.</h2></noscript>"

How are you going to redirect if JavaScript is off? <lol>


Would you like to see how my learned friend of wit?
No javascript required to redirect ya know.


However, if you're showing people the above message, it is. meta
refreshing won't do it, nor will a server-side redirect using headers.

Oh but RtS is just way to stoopid to figure that one out.


Clearly. Even Dubya looks smart next to you. Your code is getting
worse - how is that possible?

--
Hywel

Jul 23 '05 #7
Richard wrote:
http://somestuff.batcave.net/menu2.html

Attempting to overcome the problem with span and IE.
As you'll see in IE, the span block appears totally within the boundaries of
the "thumbs" division and is cut off from view.
In Firefox, the span block is shown on top of the menu with the absolute
position based upon the "home" location.

What can be done to correct this so that the span block will show where I
want it?

This method would be nice to use so that those with JS turned off will still
see the larger images.


hmmm well,

like others have said you cannot have a <p> *inside* a <span>. It works
fine the other way around tho: <p>something <span> blah </span></p> is
fine. That could be causing your problem.

There are still a lot of code errors:
http://validator.w3.org/check?verbos...net/menu2.html

....which cause IE (and FireFox for that matter) to run in Quirksmode. In
Quirks mode the way the browser renders is somewhat unpredictable. Best
bet is always to try get your page to fully validate before you come
looking for help.
--
x theSpaceGirl (miranda)

# lead designer @ http://www.dhnewmedia.com #
# remove NO SPAM to email, or use form on website #
Jul 23 '05 #8
Richard wrote:
On Fri, 28 Jan 2005 00:00:03 -0500 Beauregard T. Shagnasty wrote:
Richard wrote:

http://somestuff.batcave.net/menu2.html
"<noscript><h2>Your javascript is turned off. Links to images will not
work.<br>
You will be redirected to another page.</h2></noscript>"

How are you going to redirect if JavaScript is off? <lol>


Would you like to see how my learned friend of wit?
No javascript required to redirect ya know.
Oh but RtS is just way to stoopid to figure that one out.

Attempting to overcome the problem

You'll never be able to do that. Find another hobby.

--
-bts
-This space intentionally left blank.


nice

Jul 23 '05 #9

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

Similar topics

14
by: Zac Hester | last post by:
I figured since a lot of us around here design sites for "customers" a lot, I'd ask a general question that might help a lot of us in the future. When dealing with clients asking for...
4
by: Vince | last post by:
I'm getting this message when I try and run a .net web app in the development system: CS0016: Could not write to output file 'c#:\windows nt\Microsoft..net framework\v1.1.4322\Temporary ASP.NET...
3
by: Searcher7 | last post by:
I was wondering if anyone is aware of any websites or books that cover the stated goals and display the completed code for various programs, and also includes in detail the explanations for what...
2
by: Diane Selby | last post by:
Hi- I am confused by C#'s scoping of variables within a child scope (for loop, conditional, block of code), and was hoping someone could explain. Here's the offending code: for (int i=0;...
3
by: musosdev | last post by:
Hi guys Okay, I've setup my projects to open and compile fine in VS2005 using FPSE and remote web, but it's *really* slow. So I thought I'd have a go at doing it the normal way, by loading from...
17
by: stubbsie | last post by:
Hi, I have redesigned our official public government website in .net and it has taken me a few months to redo. I have been the sole designer of the website from its humble beginnning a few years...
12
by: Pascal | last post by:
hello and soory for my english here is the query :"how to split a string in a random way" I try my first shot in vb 2005 express and would like to split a number in several pieces in a random way...
2
tpgames
by: tpgames | last post by:
Two days ago, MS office Word would type JP fonts, I thought. I didn't think I was using Works. Now, it won't type in JP. Jasc Paint shop pro 8, should type JP fonts because I am using XP, according...
4
by: z55177 | last post by:
My domain: http://www.esthevision.cz/ This is the cause of my problem. The template is supposed to look somewhat like this: PINK STRIPE http://themebot.com/website-templates/ht... I created an...
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
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,...
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
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...

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.