Site jumping in FF3 / vertical scroll-bar

Post non-phpwcms related topics here - but I don't want to see "hey check this or that other cms". Post if you have a point or worthwhile comment, don't post just to increase you post count!
Post Reply
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Site jumping in FF3 / vertical scroll-bar

Post by flip-flop »

In FF3 min-height: 100.01%; don´t work anymore to fix the vertical scrollbar.

Fix 1:

Code: Select all

html, body { /* Gekos right scrollbar visible at all */
	min-height: 100%; 
	margin-bottom: 1px; /* FF3 */
}
Fix 2: (Same scrollbar output like IE, but it isn´t CSS level 2.1 conformable (exists in CSS level 3 !!!)

Code: Select all

body {
	overflow-y: scroll; /* only css level 3 conformable */
}
html, body { /* Gekos right scrollbar visible at all */
	min-height: 100%; 
}
Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
User avatar
Toflar
Posts: 175
Joined: Wed 7. May 2008, 12:01
Location: Lyss / Schweiz
Contact:

Re: Site jumping in FF3 / vertical scroll-bar

Post by Toflar »

Für FF hab ich sowieso immer die spezielle moz-Anweisung für die Scrollbar benutzt.
Auch wenn es dadurch einen nicht validen Code gibt - Kenner wissen ja, was es bedeutet :wink:
--------------------------------
Es grüsst

Toflar
User avatar
Jensensen
Posts: 3000
Joined: Tue 17. Oct 2006, 21:11
Location: auf der mlauer

Re: Site jumping in FF3 / vertical scroll-bar

Post by Jensensen »

Hi flip-flop,

thank you for sharing!
Toflar wrote:Für FF hab ich sowieso immer die spezielle moz-Anweisung für die Scrollbar benutzt...
Wie sieht die aus?
[edit] Was, nicht valid? Dann vielleicht besser nicht. [/edit]
{so_much} | Knick-Knack. | GitHub
Umlaute im URL sind meistens immer Kacke.
User avatar
Heiko H.
Posts: 868
Joined: Thu 27. Oct 2005, 11:41
Location: Dresden
Contact:

Re: Site jumping in FF3 / vertical scroll-bar

Post by Heiko H. »

flip-flop wrote:In FF3 min-height: 100.01%; don´t work anymore to fix the vertical scrollbar.
Sorry Knut but I can't confirm this behaviour.
Have a look here... :roll:

Heiko...

[EDIT]
I have noticed that I use a CSS like this:

Code: Select all

html, body {
height: 101%;
...
}
[/EDIT]
Not longer here - sorry...

Haubner-IT GbR Dresden
User avatar
update
Moderator
Posts: 6455
Joined: Mon 10. Jan 2005, 17:29
Location: germany / outdoor

Re: Site jumping in FF3 / vertical scroll-bar

Post by update »

This seems to work:

Code: Select all

body {
	margin: 0;
	padding: 0;
	              
	text-align: center;
	height:100.1%;
	background: black;
	}
html {
	height: 100.1%;
	}
It's mostly all about maintaining two or three customer's sites Still supporter for the band Mykket Morton. Visit Mykket Morton on FB. Listen Mykket Morton and live videos on youtube.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Re: Site jumping in FF3 / vertical scroll-bar

Post by flip-flop »

Yes it works, but the IE is using a FF like toolbar.
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
User avatar
update
Moderator
Posts: 6455
Joined: Mon 10. Jan 2005, 17:29
Location: germany / outdoor

Re: Site jumping in FF3 / vertical scroll-bar

Post by update »

flip-flop wrote:Yes it works, but the IE is using a FF like toolbar.
:shock: :?: toolbar? I did submit a possible solution for the window scrollers only ;)
Do I miss something, perhaps an FF - like developer toolbar for IE6 or 7?
It's mostly all about maintaining two or three customer's sites Still supporter for the band Mykket Morton. Visit Mykket Morton on FB. Listen Mykket Morton and live videos on youtube.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
User avatar
Toflar
Posts: 175
Joined: Wed 7. May 2008, 12:01
Location: Lyss / Schweiz
Contact:

Re: Site jumping in FF3 / vertical scroll-bar

Post by Toflar »

Oh sorry...don't know why, but I wrote everything in German xD

Just in addition to my post or rather as an answer to Jensensen's question:

http://www.css4you.de/mozproperty.html

...is coming somehow or other! Personally i think the CSS source is still valid with one of these codes...it's not accepted by every browser, okay. But the padding rule which IE6 was using (which was actually the right one according to W3C) disappeared too because of somebody who thought that the FF converting ist better :wink:
--------------------------------
Es grüsst

Toflar
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Re: Site jumping in FF3 / vertical scroll-bar

Post by flip-flop »

claus wrote::shock: :?: toolbar? I did submit a possible solution for the window scrollers only ;)
Do I miss something, perhaps an FF - like developer toolbar for IE6 o
:oops: :oops: Scroll-bar :oops: :oops:
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
User avatar
Jensensen
Posts: 3000
Joined: Tue 17. Oct 2006, 21:11
Location: auf der mlauer

Re: Site jumping in FF3 / vertical scroll-bar

Post by Jensensen »

Toflar wrote:... Personally i think the CSS source is still valid ...
He, he, this is really funny - you are your own "validator"?
There are many (some would say too much) people who personally think that their (css) code is valid. :wink:
Don't get me wrong! Guess you ARE checking for valid code. But your phrase was so funny that I couldn't retain.
{so_much} | Knick-Knack. | GitHub
Umlaute im URL sind meistens immer Kacke.
User avatar
juergen
Moderator
Posts: 4556
Joined: Mon 10. Jan 2005, 18:10
Location: Weinheim
Contact:

Re: Site jumping in FF3 / vertical scroll-bar

Post by juergen »

The problem with BARS is all the time: If you are familiar with them for a longer time you will forget which one was the last yesterday :mrgreen:
*duck* and :arrow: wegrenn
User avatar
update
Moderator
Posts: 6455
Joined: Mon 10. Jan 2005, 17:29
Location: germany / outdoor

Re: Site jumping in FF3 / vertical scroll-bar

Post by update »

as per J. Morrison: ".... show me - the way - to the next - scroller BAR.... du du du du du ....du du du du du...."
DUWR (duck un' wegrenn) :mrgreen:
It's mostly all about maintaining two or three customer's sites Still supporter for the band Mykket Morton. Visit Mykket Morton on FB. Listen Mykket Morton and live videos on youtube.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
User avatar
Toflar
Posts: 175
Joined: Wed 7. May 2008, 12:01
Location: Lyss / Schweiz
Contact:

Re: Site jumping in FF3 / vertical scroll-bar

Post by Toflar »

Jensensen wrote:Don't get me wrong! Guess you ARE checking for valid code. But your phrase was so funny that I couldn't retain.
:D :D CSS 3 is coming soon...why don't you play with the different possibilities your browser offers until the W3C kicks their own ass? I'm wating for the day every browser is interpreting the source code the same way...and I know we all do...

Ah, and I know this "personally" sounds funny, but I couldn't write it in another way :wink:
--------------------------------
Es grüsst

Toflar
User avatar
juergen
Moderator
Posts: 4556
Joined: Mon 10. Jan 2005, 18:10
Location: Weinheim
Contact:

Re: Site jumping in FF3 / vertical scroll-bar

Post by juergen »

Toflar wrote:I'm wating for the day every browser is interpreting the source code the same way...and I know we all do...
How old are you now, Toflar ? Do not wait !Waiting causes headache!! Ask claus !
User avatar
Toflar
Posts: 175
Joined: Wed 7. May 2008, 12:01
Location: Lyss / Schweiz
Contact:

Re: Site jumping in FF3 / vertical scroll-bar

Post by Toflar »

Almost 20 years old... :D More than 5 years into webdesign...

Aha, as you said: don't wait...I agree with you - so use the possibilities you have :D
--------------------------------
Es grüsst

Toflar
Post Reply