Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

Milan

macrumors member
Original poster
Jan 25, 2005
90
0
Hello

I´ve made a site with Adobe GoLive CS. But now I have a problem. The site is not displayed in all browsers.

-Safari/Mac OS X - works
-Internet Explorer/Mac OS X - works
-Internet Explorer/Mac OS 9 - works
-Mozilla/Mac OS 9 - does not work
-Internet Explorer/Windows - does not work

"does not work" means there is nothing displayed.

The site is not tested on much different computers (1 Windows machine, 1 Macintosh Classic, 1 Macintosh X)

I do not know what the problem is. I would really appreciate it if someone would test the site.

The URL is http://www.eh-keramik.de/
It´s a German site but that should not matter.

Thank you and Greetings
-Milan
 
Hey, thank you for that link.
I´ll try to improve the site according to these information.
Thank you!

-Milan
 
Post back when the site validates...

At the moment you may add:

- Firefox 1.0.1/Mac - does not work

...to your list. Version numbers of the different browsers would also be nice to know...
 
And you may add:

Firefox 1.0.1 Windows - does not work
Netscape 7 - Windows - Does Not Work
America Online - Windows - does not work
 
Frames are very special to windows, they have to be perfect or... BAM they don't work. Use layers instead, make layers and then have them as inline frames here's an example:
Code:
<div style="position:absolute; left:0px; top:0px; width:500px; height:500px; background-color:#FFFFFF;">
<iframe src="Hautpseite.html" width="500px" height="500px">
</iframe>
</div>

EDIT: You can change those values to adjust for what you need. Its CSS/Styles learn them and HTML, it'll benefit you if you don't already know them.
 
Code:
<frameset rows="165,*" border="0" frameborder="no" framespacing="0">
	<frame name="Titel" src="Titelleiste.html" noresize scrolling="no">
	<frameset cols="287,*" border="0" frameborder="no" framespacing="0">
		<frame name="Menu" src="Menu.html" noresize>
		<frame name="Hauptbereich" src="Hautpseite.html" noresize>
	</frameset>
</frameset>
I'd change it to this
Code:
<frameset rows="165,*" border="0" frameborder="no" framespacing="0">
<frame name="titel" src="http://www.eh-keramik.de/Titelleiste.html" 

noresize scrolling="no">
<frameset cols="287,*" border="0" frameborder="no" framespacing="0">
<frame name="menu" src="http://www.eh-keramik.de/Menu.html" noresize>
<frame name="hauptbereich" 

src="http://www.eh-keramik.de/Hautpseite.html" noresize>
</frameset>
<noframes>
<body>
</body>
</noframes>
 
The Validator Blue Velvet told me about says that it is ok now, but there is a white bar that should not be there. Does anybody know how to remove it using valid HTML?

And does the site work now on different browsers?
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.