See: http://universalmediaman.nl/projecten/imagesinwater/
The site does not shift when switching between
- 'info' and 'clienten''
- 'home', 'inspiratie' and 'contact'
with other combinations the site shifts lightly
how to fix this?
See: http://universalmediaman.nl/projecten/imagesinwater/
The site does not shift when switching between
- 'info' and 'clienten''
- 'home', 'inspiratie' and 'contact'
with other combinations the site shifts lightly
how to fix this?
The problem is caused by the page content being less than the height of the browser (so no scroll bar appears). There is an easy way to fix this, add this to the end of style.css:
body { min-height: 100.01% !important; }
This will force a scroll bar to appear on every page and stop the "shift".
Hmm... I'm also having this problem at http://www.prospecthouseevents.com/about/ but the min-height suggestion didn't work for me. Do I also need to do something with my overflow?
Hey,
Which browser are you using? IE doesn't understand some valid CSS so ignores it / makes up its own understanding and does weird things :(
James
I am also having an issue with this, I tried adding that code to the style.css and style 1.css file and am still getting the 'shift'
URL is toomanycommas.com/test
Any help would be greatly appreciated.
Thanks.
You can use:
body { overflow-y: scroll; }
to display the scroll bars on every page.
Add this to the end of style.css
The Dude
Worked like a charm, you are the man, dude. I owe you a caucasian.
You must log in to post.