facebook freezes because I don't sign in
I have been able to access a news website which is facebook-based, but I have not needed a facebook account to do so. Suddenly I am blocked if I don't sign in....this doesn't happen with Interned Explorer. Solution?
All Replies (1)
They have set the DIV container with the main content to position:static
Setting that container to position:static gives you a vertical scroll bar.
This CSS code in userContent.css works on the page that you posted.
The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.
@-moz-document domain(www.facebook.com){ body > div._li._31e { position:static !important; }}
Modified