naschu-arts.com

discuss about sites that are just under construction or where experimental stuff is used
Post Reply
fellchen
Posts: 158
Joined: Thu 21. Jul 2005, 15:48
Location: Wesel a. Rhein, Germany
Contact:

naschu-arts.com

Post by fellchen »

Eine neue Seite an der ich arbeite:

http://www.naschu-arts.com/index.php
You should not take life too seriously,
or you will not even get out of it alive!
User avatar
pico
Posts: 2595
Joined: Wed 28. Jul 2004, 18:04
Location: Frankfurt/M Germany
Contact:

Post by pico »

schau sie Dir mal im FF an :(
Lieber Gott gib mir Geduld - ABER BEEIL DICH
Horst - find me at Musiker-Board
Eggi
Posts: 15
Joined: Thu 20. Oct 2005, 11:26

Post by Eggi »

im IE 6 wird auch alles unter das menü verschoben
Nordlicht
Posts: 160
Joined: Wed 12. Apr 2006, 08:16
Location: Germany, near Hamburg
Contact:

Post by Nordlicht »

In IE7 und OPera 9.10 sieht alles gut aus.
fellchen
Posts: 158
Joined: Thu 21. Jul 2005, 15:48
Location: Wesel a. Rhein, Germany
Contact:

Post by fellchen »

Das dachte ich mir schon... IE 7 und Opera 9.10 habe ich selbst drauf und die anderen lasse ich jetzt mal über browsershots.org checken.

Während der Opera die Breite bis auf's Pixel genau nimmt, hat der IE 7 schon ca. 5 Pixel hinzugezaubert, die gar nicht da sind und rückt den Text (mainBlock) unter das Menü. Demnach sind FF und IE6 noch schlimmer.

Dabei ist ja eigentlich alles so einfach;

15px links vom Menu
150px Menu
15px rechts vom Menu
10px links vom Text
580px Text
15px rechts vom Text
-----------------------------------
785px gesamte Breite
You should not take life too seriously,
or you will not even get out of it alive!
fellchen
Posts: 158
Joined: Thu 21. Jul 2005, 15:48
Location: Wesel a. Rhein, Germany
Contact:

Post by fellchen »

Hat noch jemand eine Lösung für den dynamischen Hintergrund im DIV ID containerBlock?

Code: Select all

#container {
	width: 785px;
	height: 1000px; /* IE7 + Opera 9.x akzeptieren 100% anstatt der 1000px */
	margin: 0px;
	padding: 0px;
	background-color: #FFFFFF;
	border-left-color: #CCCCCC;
	border-left-style: solid;
	border-left-width: 2px;
	border-right-color: #CCCCCC;
	border-right-style: solid;
	border-right-width: 2px;
}
Der Hintergrund mit Rahmen (border) soll natürlich immer von ganz oben bis ganz unten reichen und nicht nach 1000px aufhören.
You should not take life too seriously,
or you will not even get out of it alive!
User avatar
update
Moderator
Posts: 6455
Joined: Mon 10. Jan 2005, 17:29
Location: germany / outdoor

Post by update »

Hi,
perhaps try to start with

Code: Select all

html {
	height:100%; 
	max-height:100%;
	/* \*/ 
	overflow: hidden; 
	/* */ 
	.
	.
	.

	}

body {
	height:100%; 
	max-height:100%;
	overflow:hidden;
	.
	.
	.

	}
and

Code: Select all

#container {
	display:block;
	height:100%;
	max-height:100%;
	width:800px; 
	margin-left:-400px; 
	left:50%;
	overflow:auto;
	.
	.
	.

	}
Only some suggestion
Greetings
claus
fellchen
Posts: 158
Joined: Thu 21. Jul 2005, 15:48
Location: Wesel a. Rhein, Germany
Contact:

Post by fellchen »

Okay, danke Claus das hat erstmal geholfen. Wenn Du allerdings noch eine Möglichkeit kennst, die häßlichen Scrollbalken wieder an ihren ursprünglichen Platz am rechten Fensterrand zu platzieren, dann verrate mir bitte wie. Ansonsten muss ich die einfärben...
You should not take life too seriously,
or you will not even get out of it alive!
User avatar
update
Moderator
Posts: 6455
Joined: Mon 10. Jan 2005, 17:29
Location: germany / outdoor

Post by update »

Hmm,
perhaps you could try to place your #container within a #main-container div which holds the scroll bars, like this:

Code: Select all

#main-container {
   display:block;
   height:100%;
   max-height:100%;
   width:100%;
   overflow:auto;
   .
   .
   .

   }
and delete the auto-scroll in #container (didnt test it right now but you never know - perhaps it is working (at least in some manner like this...) :wink:
edit: to colorize them will fail in ff, doesn't it?
fellchen
Posts: 158
Joined: Thu 21. Jul 2005, 15:48
Location: Wesel a. Rhein, Germany
Contact:

Post by fellchen »

colorized scrollbars only work with the internet explorer its okay
i will try your code again...
You should not take life too seriously,
or you will not even get out of it alive!
Post Reply