It might be that FB serves changes to users in one region later than to users in another region, so maybe it'll break for you only after a while. We'll see...
Posts made by robkaw
-
RE: Opera 12.18Opera for Windows
-
RE: Opera 12.18Opera for Windows
The toolbar buttons are on the left instead of on the right, with the search field underneath them instead of to the left of them.
Sorry, but I can't help - I don't know what's the problem because it works fine for me. Maybe it's some extension or wrong CSS file?
I take it the code above should replace the previous code, not be added to it?
Yes, the code is a complete CSS file.
- Opera for Windows
- Opera for Windows
-
RE: Opera 12.18Opera for Windows
Does it still work?
Yes, just checked. Did you apply the fix I've mentioned in the subsequent post?
Beside that to get rid of a prompt about upgrading the browser I use:
Strange, I've never got a prompt like that. Have you by chance changed the browser identification option in site preferences for FB?
And to remove a bit of the empty space above the bar on the right side:
I don't have this one too.
-
RE: Opera 12.18Opera for Windows
I suppose you haven't also got a fix for the typing of comments on YouTube not working properly?
Sorry, no.
- Opera for Windows
- Opera for Windows
-
RE: Opera 12.18Opera for Windows
I assume that the double forward slash at the start of the @include line needs to be removed to make the list active?
No, the double slash is needed there. UserJS uses special markers in JS comments.
-
RE: Opera 12.18Opera for Windows
Just disable opera:config#UserPrefs|AutocompleteOffDisablesWand
I have this one disabled yet Wand still won't work without the User JavaScript.
-
RE: Opera 12.18Opera for Windows
Be aware that not all sites' login pages work with Opera 12's password manager now.
This is often because those sites add
autocomplete="off"
attribute to their login forms. I've made a User JavaScript that fixes this:// ==UserScript== // @include http://stupidsite.com/login.php // ==/UserScript== // prevent disabling autocomplete in forms (function() { var tags = ["form", "input"]; for (var t = 0, tag; tag = tags[t]; t++) { var nodes = document.getElementsByTagName(tag); for (var n = 0, node; node = nodes[n]; n++) { if (node.getAttribute("autocomplete") == "off") { node.setAttribute("autocomplete", "on"); // Opera 12 doesn't support autocomplete property node.parentElement.innerHTML += ""; // needed to make changes effective for form elements } } } }());
Place this in a file named
autocompleteOn.user.js
in your User JavaScript directory (specified here, usually it'sC:\Users\<username>\AppData\Roaming\Opera\Opera\userjs
) and adjust the site's address in the@include
line. You can add@include
lines for more sites. Then enable User JavaScript. Note that most login pages use HTTPS, so for this to work you also need to enable User JavaScript on HTTPS, but then please use it with caution as suggested in the docs (at the very bottom of the page).EDIT: Apparently this dumb forum's software mangles Opera config links, so you need to remove the
denied:
prefix from them manually... - Opera for Windows
-
RE: Opera 12.18Opera for Windows
You haven't got a fix for the Facebook search field now being mis-placed have you?!
Actually, I already do.
Make a CSS file containing the following:
._50tk, ._2t-e { display: flex; } ._2t-e, ._50tm { flex: 1; }
Then set this file as the custom style sheet in site preferences for FB. Of course this solution may break when they make changes to the site again, but we'll see.
-
RE: Opera 12.18Opera for Windows
Has anyone else noticed that Facebook is now mis-rendering in 12.18?
Yeah, the search field is misplaced recently, but it also was like that in 12.17. Probably can be fixed by a custom CSS, but I haven't figured how.