473,788 Members | 2,828 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Fluid layouts for Mac MSIE 5 please

I have a fluid header/two column layout at
http://www.members.iinet.net.au/~abell1/test/demo10.htm
which works with windows MSIE 5.5 and 6, Mozilla, Netscape, and Opera;
and Safari but which crashes with Mac MSIE 5.

Rather than try to hack the demo to make it work with Mac MSIE 5 I'd
like to find a fluid header/two column layout which will work with
this browser, and see if I use alternate css files to make the
eventual site work with all these browsers.

So could somebody please point me to a source of fluid layouts for the
Mac IE? All I can find after extensive searching is fixed (pixel
based) layouts, and I don't want that at all.

Regards, Alex
Jul 20 '05 #1
5 1710
Alex Bell wrote:
I have a fluid header/two column layout at
http://www.members.iinet.net.au/~abell1/test/demo10.htm
which works with windows MSIE 5.5 and 6, Mozilla, Netscape, and Opera;
and Safari but which crashes with Mac MSIE 5.


OS9 IE 5.1
OSX IE 5.2

For me, it doesn't display as intended, but it doesn't crash in any
sense of the word. Or are you counting how it handles (or not)
position:fixed as a "crash"?

BTW, you do know that your <link> points to a non-existent stylesheet?
This is likely to be a problem in some browsers, NS4 for sure.

--
Reply address is a bottomless spam bucket.
Please reply to the group so everyone can share.
Jul 20 '05 #2
Alex Bell wrote:
I have a fluid header/two column layout at
http://www.members.iinet.net.au/~abell1/test/demo10.htm which works
with windows MSIE 5.5 and 6, Mozilla, Netscape, and Opera; and Safari
but which crashes with Mac MSIE 5.
Do you know what is causing the crash?
Rather than try to hack the demo to make it work with Mac MSIE 5


Understandable sentiment, but I thought I'd mention that MSIE5/Mac's
bugs are pretty well documented:

http://www.macedition.com/cb/ie5macbugs/

And it's quite easy to hide style rules from IE/Mac:

@import url("hiddenFrom IEmac.css");

@media screen {
/* these rules are hidden from IE5 Mac */
}

I use the second method to hide position: fixed from IE/Mac because its
support is a bit sketchy.

--
Brian (follow directions in my address to email me)
http://www.tsmchughs.com/
Jul 20 '05 #3
On Sun, 22 Feb 2004 06:13:53 -0600, kchayka <us****@c-net.us> wrote:
Alex Bell wrote:
I have a fluid header/two column layout at
http://www.members.iinet.net.au/~abell1/test/demo10.htm
which works with windows MSIE 5.5 and 6, Mozilla, Netscape, and Opera;
and Safari but which crashes with Mac MSIE 5.
OS9 IE 5.1
OSX IE 5.2

For me, it doesn't display as intended, but it doesn't crash in any
sense of the word. Or are you counting how it handles (or not)
position:fix ed as a "crash"?

Yes, thank you. To me having the header area much 'higher' than it
should be and hiding the top of the menu and content areas counts as a
crash, but I accept one could describe it as not displaying as
intended. And thank you for pointing me to the position:fixed as a
likely problem.
BTW, you do know that your <link> points to a non-existent stylesheet?
This is likely to be a problem in some browsers, NS4 for sure.

No, I've pasted that in from somewhere and never thought about it.
I'll take it out.

Regards, Alex

Jul 20 '05 #4
On Sun, 22 Feb 2004 14:12:40 GMT, Brian
<us*****@juliet remblay.com.inv alid-remove> wrote:
Alex Bell wrote:
I have a fluid header/two column layout at
http://www.members.iinet.net.au/~abell1/test/demo10.htm which works
with windows MSIE 5.5 and 6, Mozilla, Netscape, and Opera; and Safari
but which crashes with Mac MSIE 5.
Do you know what is causing the crash?

No, I'm afraid not, but I have been pointed towards the position:fixed
in the header and menu areas as you mention below. I'll take them out
and see what happens.
Rather than try to hack the demo to make it work with Mac MSIE 5


Understandab le sentiment, but I thought I'd mention that MSIE5/Mac's
bugs are pretty well documented:

http://www.macedition.com/cb/ie5macbugs/

And it's quite easy to hide style rules from IE/Mac:

@import url("hiddenFrom IEmac.css");

@media screen {
/* these rules are hidden from IE5 Mac */
}

I use the second method to hide position: fixed from IE/Mac because its
support is a bit sketchy.

Thanks for this. How do the methods you describe above compare with
the comment backslash method? It looks as though the methods you
describe are for whole style sheets. I have thought of using separate
style sheets for Mac MSIE and one for the rest.

Regards, Alex

Jul 20 '05 #5
Alex Bell wrote:
On Sun, 22 Feb 2004, Brian wrote:
it's quite easy to hide style rules from IE/Mac:

@import url("hiddenFrom IEmac.css");

@media screen {
/* these rules are hidden from IE5 Mac */
}
How do the methods you describe above compare with
the comment backslash method?


I don't use that method.
It looks as though the methods you describe are for whole style sheets.
@import is to hide an entire stylesheet. I originally used that method.
But that left me with 4 stylesheets for screen. Since I only needed to
hide one rule from IE5/Mac, I switched to the @media screen method. It
is not really a kludge, it is an accepted part of css.
I have thought of using separate
style sheets for Mac MSIE and one for the rest.


Only you know how complicated your project is. For my current project,
< http://www.tsmchughs.com/ >
I have 2 stylesheets for screen, one of which is linked via <LINK> to
each document, the other is the real stylesheet, @import-ed into the
<LINK>ed one, so that all styels are hidden from NS4. I wanted to keep
things simple.

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

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

Similar topics

2
3708
by: Alberto Santini | last post by:
I ported a Jos Stam's demo about Fluid mech to check the difference of speed between C implementation and Python. I think I achieved good results with Python and there is space to improve, without to extend the program with C routine, I mean. -- Good hack, Alberto Santini (http://www.albertosantini.it/)
6
2828
by: Tristan Miller | last post by:
Greetings. Can someone point me to a good source of nice, simple stylesheets, similar to the W3C Core Styles provided at http://www.w3.org/StyleSheets/Core/? I don't need anything fancy like multiple columns; I just want some more elegant combinations of fonts and colours for all the basic HTML elements. The Open Directory Project has a whole category devoted to CSS layouts, but as far as I can tell most of those sites concentrate on...
0
1627
by: John Bradley | last post by:
I've read and understood the w3 specs on css1 and css2. I've done some positioned layouts on my own system that worked as expected. But - I'm concerned about letting anything on to the live system because all I hear are bugs, workarounds and hacks. The last straw was the ie6 peekaboo bug. I don't have ie6 and in a panic had to phone my brother the other side of the country to tell him to browse my simple site and describe what he saw. It...
2
1840
by: Mario T. Lanza | last post by:
Greetings, I have been developing websites in CSS for a couple years; I claim to be no expert, but certain things could definitely be easier. Consider the box model and it's different implementations: http://tantek.com/CSS/Examples/boxmodelhack.html Microsoft's way and the web standards way. Ironically, though
22
3514
by: Jam Pa | last post by:
Once again my big mouth has landed me with a tough job. I have a static CSS layout, where each and every element has been defined by pixel size - lots of them, too! Mostly relative elements, though. Imagine centered column layout, with a header box, and content box with lots of smaller content boxes of different sizes, some spanning several 'rows' or 'columns'. How would you go about changing this kind of static layout into
12
2390
by: JB | last post by:
Hi All, Is it acceptable to use a fixed width vertical navigation column within a fluid 2 or 3 column layout? Example. Left Column (navigation) fixed width of say 180px Right Column (main content) fluid width to fit rest of window
5
1797
by: Stan R. | last post by:
Greetings. I have a couple of questions concerning CSS layouts, as apposed to the old <tablemethod for creating layouts . Even after spending the last few days searching all over Google Groups, I haven't not been able to find a solution to my collective dilemma, and I hope some of you fine folks here in these neck of the UseNet woods might be able to share some wisdom with a fellow coder. My questions are in regard to what are the proper...
18
2512
by: Nik Coughlin | last post by:
I am halfway through writing a tutorial on image slicing for fluid CSS layouts, I would love some feedback on what I've done up until this point: http://nrkn.com/index.html I am still writing parts 3 & 4, "optimising the layout" and "alpha transparency". Also, does anyone know why I don't get numbers or bullets on my ul and ol in Internet Explorer (6 or 7)?
3
3778
by: hzgt9b | last post by:
I want a page with a centered div containing two rows. Top row has an image and some text. The bottom row needs to have three columns. I'd love to have the 1st column set to a fixed width then have the 2nd and 3rd columns fill the remaining space but I've given up on that and am willing to settle for the second row to have a fluid 3-column layout (or something else simple). Anyway, I've developed a page where the second row has this 3...
0
10175
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 captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10112
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 most users, this new feature is actually very convenient. If you want to control the update process,...
0
9969
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8993
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 launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6750
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5536
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4070
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3675
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2894
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 effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.