473,382 Members | 1,646 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,382 software developers and data experts.

Mac IE choking on site: why??

Hi guys,

http://www.corinneschippert.com

css: http://www.corinneschippert.com/corinne.css

Site (XHTML-Strict; validates) works on Mozilla, Win IE 6, but does not
display properly on Mac IE 5.2. Cannot, for the life of me, figure out
what the problem is.

Any ideas?

Thanks in advance,
Shaun

--
(Remove the capital Z from the address)
Jul 20 '05 #1
9 2154
Shaun Wolf Wortis wrote:
http://www.corinneschippert.com
Why have you specified a font-size that is significantly smaller than
what I find comfortable? FYI: I increased it back to what I wanted in
the first place -- you may insist on fighting with me over this, but
I'll always win because my browser lets me control such matters. After
getting it back to what I wanted in the first place, the grey text at
the top was partially covering the photo, providing poor contrast (grey
on grey), making it hard to read.

You also provide no way of figuring out what is a link and what isn't.
It's called "mystery meat" navigation. It might seem cool, but it is bad
for usability.

And what the friggin heck is with the popup on the "contact" page. There
is no reason for a popup. And there is *NO* reason to take away my
toolbars. Leave my ui alone, thank you. It was disorienting for me, and
I'm a power web surfer. Pity the poor amateur.
css: http://www.corinneschippert.com/corinne.css
Thank you for posting a link to the css. Thanks also for validating your
code before asking for help here. (I'm not all negative, you know.) :-)
Site (XHTML-Strict; validates)
HTML is more robust; in almost every case, it's a better choice.
works on Mozilla, Win IE 6, but does not display properly
What does that mean? "does not display properly" is not much better than
"is broke," and doesn't help me understand what you want.
on Mac IE 5.2.


I noticed you have an import statement.

@import url(corinne.css);

Note that IE/Mac is very particular about the syntax of such statements.
I don't have a Mac, so I cannot test what specifically works and what
doesn't. I can tell you that I tried things that conform to the spec,
but that didn't work. I now use this format:

@import "corinne.css";

It works on Mac IE.

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
Jul 20 '05 #2
Op Tue, 04 May 2004 11:47:47 -0400, schreef Brian:
Shaun Wolf Wortis wrote:
http://www.corinneschippert.com


[cut: but I do like to control my own screen too...]
css: http://www.corinneschippert.com/corinne.css works on Mozilla, Win IE 6, but does not display properly
on Mac IE 5.2.


I noticed you have an import statement.

@import url(corinne.css);


I don't own a Mac either, and ran into the same problem a few days ago. I
wanted to use the @import statement to make NN 4.X ignore the CSS, but
then ran into the problem of Mac IE 5.2 ignoring the import of CSS. A
solution that was suggested "Conditional comments" goes this way:

<!--[if IE]>
<link rel="stylesheet" type="text/css" href="assets/css/iehack.css">
<![endif]-->

But uhu... Mac IE 5.2 doesn't support conditional comments. However, that
code does a good job for applying the IE-only CSS.

I'm trying this tonight:
http://www.premonition.co.uk/cssd/ie51-only.html

I'll let you know if it works...

grtz

Vincent

--
http://lilly.csoft.net/~vdebaere/
http://otlet.sourceforge.net/

Jul 20 '05 #3
In article <10*************@corp.supernews.com>,
Brian <us*****@julietremblay.com.invalid> wrote:

[Other stuff irrelevant to my question, but general answer is: a) it
looks good and I believe in sites that look good b) I make sites for
clients who sometimes have specific needs/desires -- in the case of
popups without toobars the photographer did not like the toolbar as it
was distracting. I agreed. This is a site after all about photographs..]
Site (XHTML-Strict; validates)


HTML is more robust; in almost every case, it's a better choice.


?
works on Mozilla, Win IE 6, but does not display properly


What does that mean? "does not display properly" is not much better than
"is broke," and doesn't help me understand what you want.


I guess the question is mostly for folks with a Mac as it's hard to
describe what's happening since I don't understand it.. On index.htm,
nothing but the main photo, the lower menu and the copyright info is
being displayed. The top menu, the tan-colored bars, and the Best of
Boston logo are gone -- likely behind the photo, although I don't know.
on Mac IE 5.2.


I noticed you have an import statement.

@import url(corinne.css);


Actually I use: @import "corinne.css";
Jul 20 '05 #4
On Tue, 04 May 2004 12:39:18 -0400, Shaun Wolf Wortis wrote:
...general answer is: a) it looks good...


To who? You?

Are you the only user of your site?
You may well be if you take that attitude.

--
Andrew Thompson
http://www.PhySci.org/ Open-source software suite
http://www.PhySci.org/codes/ Web & IT Help
http://www.1point1C.org/ Science & Technology
Jul 20 '05 #5
On Tue, 4 May 2004, Shaun Wolf Wortis wrote:
[Other stuff irrelevant to my question, but general answer is: a) it
looks good and I believe in sites that look good
If you're suggesting that "looks good" is somehow incompatible with
proper web site engineering, then you're going to find quite a number
of folks around here who know better. I happen to be pretty useless
in the visual design area, so I'm sadly unable to offer any convincing
demonstrations myself, but that doesn't mean I can't recognise them
when I see them designed by others.
b) I make sites for clients who sometimes have specific
needs/desires
Actually, in a WWW context you're supposed to be making sites for the
people who will use them, rather than for those narcissistic clients
who're only interested in admiring their own work.

I've seen lots of cases where the client stated a "need" or "desire"
which was sheer incompatible with the real-life properties of the WWW;
our job is to help them come to terms with the properties and demands
of the medium - to capitalise on its strengths, and to avoid battering
oneself senseless on its weaknesses.
-- in the case of popups without toobars the photographer did not
like the toolbar as it was distracting. I agreed.


Maybe you could have advised him/her how to reconfigure their own
browser.

Mine's configured to deny popup windows anyway. So if you're lucky,
you'll get your picture shown in the same browser window. If you're
unlucky, you'll get nothing more shown than a little browser popup
alert alongside the browser's status area, and I'll likely just go
somewhere else, while thinking "what an ill-mannered web site". Is
that how you seek to compliment your client's work in the WWW context?

But it's all IMHO and YMMV. I'm sure the web is big enough.
Jul 20 '05 #6
Shaun Wolf Wortis wrote:
Brian wrote:

[Other stuff irrelevant to my question,
Welcome to usenet.
a) it looks good and I believe in sites that look good b) I make
sites for clients who sometimes have specific needs/desires
[note to those just tuning in: this comment appears to be in reply to my
complaining that the site uses microfonts]

Quote from Alan Flavell:

<quote>
What the client wants, and what the WWW will do, are not necessarily
the same thing. It's our job as developers to resolve such
inconsistences ;-}
</quote>
in the case of popups without toobars the photographer did not
like the toolbar as it was distracting. I agreed.
Then turn off the toolbars in your browser. Leave them alone in others'
browsers.
This is a site after all about photographs..]
What does the subject of the site have to do with usability? Or
respecting the visitor?
Site (XHTML-Strict; validates)


HTML is more robust; in almost every case, it's a better choice.


?


Sorry, I cannot understand what the question mark by itself is meant to
convey. Was my wording unclear? Or do you want more information about
the problems of XHTML?
I guess the question is mostly for folks with a Mac as it's hard to
describe what's happening since I don't understand it..
Perhaps you could provide a screen shot?
On index.htm, nothing but the main photo, the lower menu and the
copyright info is being displayed. The top menu, the tan-colored
bars, and the Best of Boston logo are gone -- likely behind the
photo, although I don't know.


Also, on info.htm, the top menu is mostly behind the content div. Only 1
link works ("contact," I think it says). Using Mozilla 1.6/Win2k.

Getting back to the home page:
It's very complicated markup and css for a very simple layout. I suggest
simplifying it. Since the photo has a fixed width by nature, create a
single div, centered, with width 741 pixels. Inside that, you need <h1>
(you have no h1 on that page) with corrinne shippert photo, the image,
and a menu div (or ul), a copyright div, and the best of boston image,
which I'd put as a foreground instead of background image.

Text-align center for h1, grey on tan. Menu and copyright text-align
right. The only element on which I'd use position: absolute or relative
is the Best of Boston image. I'd leave everything else static, with
perhaps one exception: it might make sense to position: relative the
main div in order to position the Best of Boston image absolute.
you have an import statement @import url(corinne.css);


Actually I use: @import "corinne.css";


Mozilla Developer Toolbar lied to me. It reported a different syntax,
but looking at source, I see that you use the same syntax as I do.

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
Jul 20 '05 #7
"Shaun Wolf Wortis" <so***@no-email.invalid> schrieb im Newsbeitrag
news:so*************************@news.fas.harvard. edu...
Hi guys,

http://www.corinneschippert.com

css: http://www.corinneschippert.com/corinne.css

Site (XHTML-Strict; validates) works on Mozilla, Win IE 6, but does not
display properly on Mac IE 5.2. Cannot, for the life of me, figure out
what the problem is.

Any ideas?


You have absolute positioning and negative top values for your container
divs. With the absolute positioning you take them out of the code flow, also
out of the horizon div. Actually a browser who displays that the way you
want should be considered as broken, not Mac IE...

HTH
Markus
Jul 20 '05 #8
Shaun Wolf Wortis wrote:
Site (XHTML-Strict; validates) works on Mozilla, Win IE 6, but does not
display properly on Mac IE 5.2. Cannot, for the life of me, figure out
what the problem is.


I wouldn't worry about it too much, especially if it displays fine in
Safari. IE for MacOS is officially a dead (unmaintained) product.

--
Shawn K. Quinn
Jul 20 '05 #9
Shawn K. Quinn wrote:
I wouldn't worry about it too much, especially if it displays fine in
Safari. IE for MacOS is officially a dead (unmaintained) product.


....still used in offices where there are Macs. The upgrade from IE/Mac
to Safari will likely take as long as the upgrade from e.g. IE 5/Win to
IE6. Or NN4 to, well, pretty much anything is an upgrade from that
thing. ;-)

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
Jul 20 '05 #10

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

Similar topics

5
by: Florent | last post by:
Hi, I run a few sites and I want to log in my main site database when/if there is a problem, (like a page not found or an unknown agent). But I don't want to give direct access to my database...
10
by: Thad | last post by:
Any javascript I could try on this? I've got a popup window on my site with the browser chrome removed. Another site's gone ahead and done a popup to my same .html page. The visitor to that site...
6
by: Jeremy S. | last post by:
Sorry if this is too far OT - I posted this in the IIS group and got no response - so here goes: What would be a good or recommended way to make a Web site in IIS6 inaccessible to users on the...
6
by: Brad | last post by:
I have a win2003 server workstation with multiple webs, each web has it's own ip address. In VS2005, if I select to open an existing web site, select Local IIS, the dialog correctly displays a...
0
by: HackingPSP | last post by:
I saw a lot of requests for a program like this, so I wrote it. Yeah, my site has "PSP software by Auri" but in this case it means "Pretty Sweet Programming" :) There's both a VS2005 add-in and a...
20
by: mike | last post by:
I help manage a large web site, one that has over 600 html pages... It's a reference site for ham radio folks and as an example, one page indexes over 1.8 gb of on-line PDF documents. The site...
3
by: DBLWizard | last post by:
Howdy All, Is it possible to have Visual Studio 2005 create a project form an existing hosted website? In other words I want to be able connect via ftp to my website structure and have it pull...
16
by: Ben Sehara | last post by:
Is there any way I can limit the access to my website? I have a site "A" and I want to allow access to it only from site "B" login user. If someone try to access site "A" directory, I want it...
3
by: John Kotuby | last post by:
Hi all, Within an IFRAME of a standard site constructed of mostly static HTM type pages, I am calling up one page from a large ASP.NET 3.5 site. I have precompiled the ASP.NET site and...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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: 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:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.