yes, i noticed it a while ago already, the page is more slow, the notifications disappeared exept the medal ones, the quote button is invisible in the threads (but it's still there, just pass the mouse arrow over it) among other things.
I noticed something wierd when I was reading a thread and the entire site formatting went nuts. Graphics disappeared, fonts changed, buttons and counts missing, etc. Maybe they're migrating the forums to new servers?
Btw have the points in our profiles always been displayed twice, once before badges count and once befor posts count, or is this part of this forum glitch?
WTF? First they took away our ability to dislike or even disagree, now we can't even quote? What the hell, forum gods? @Brude - ugly, overkill, and useless feature that replaced a useful one. I hope it's not forshadowing for the changes we'll find in BG:EE. *shudders*
Btw have the points in our profiles always been displayed twice, once before badges count and once befor posts count, or is this part of this forum glitch?
Definitely a bug. Points were not displayed twice before.
Manual quoting is a pain. Are you listening, @Coriander?
(And while we're here, videos break the Best Of page, which now lacks sorting, categories, and any indication of how many upvotes each post has. If someone is not familiar with the old version of the page, it would appear to be random and uninteresting.)
I notice on my profile it no longer mentions each time someone commented on one of my topics and just shows things like 25 badges, etc - which is a good change in my opinion.
The FB and Twitter links - meh.
Is there a link anywhere to these changes or do they just happen randomly?
And the bookmark icon is still off center in the thread title... I don't know if these changes were implemented.... it looked more like a crash when it happened with all counters going down to 0, for instance.
My account options button is gone, though the tool tip still exist. I also cannot quote users anymore. Someone is trying to suppress me ;( All kidding aside I can tell they are adding features today so some things may not work right now.
As for the FB and Twitter icons, I think they should be moved elsewhere. The Insightful, Agree etc are features that we call can enjoy, right here. Not everyone has a FB or Twitter account.
I have to wonder what good this update will do. Surely it would be enough to just link a particular page, rather than each post?
Also, the quote button isn't just hidden, as in display: none or hidden="true", it is quite literally not there any more... Someone dun goofed made a slight error when they copy and pasted the code for the core site - overriding the useful button for those other, less useful, buttons.
The "account options" button is also missing its image. It is still there, though, the CSS is just wrong; the current rule is .SpOptions { background-position: 0px -148px; }, and it should be .SpOptions { background-position: 0px 0px; } or .SpOptions { background-position: 0px 1px; }. The extra 1px makes the icons line up that little bit better (edit: otherwise the icon looks a little high, not that it's terribly noticeable).
Since I'm already typing this, I'll also say that the bookmark stars are a little off on the threads (they have been for some time now), not the one next to the other buttons that @Shandyr mentioned (next to your profile picture). The current property values for the :hover rule is a.Bookmark:hover { background-position: 0 -22px; } where a.Bookmark:hover { background-position: 0 -28px; } would be better. Also, for threads that have been bookmarked, the setting is also a little off.
Threads that have been bookmarked should have gold stars (I assume?); the current setting is a.Bookmarked { background-position: 0 -42px; }, where it should be a.Bookmarked { background-position: -36px -28px; }. The :hover rule (which is to say 'Unbookmark') should also be changed from a.Bookmarked:hover { background-position: 0 -82px; } to a.Bookmarked:hover { background-position: -18px -28px; }. Bookmark example: before and after.
Edit: Quote button is back .
The banner or title on the Best Of... page also repeats, meaning that it repeats the background image. To avoid this, the width need to be set as h2.H { width: 854px; }. Example. The only other way to avoid it is it make a title image specifically for that page that goes the entire width, which would be 1100px wide (it apparently doesn't scale the width, so it has the potential to go off the edge of the page if your resolution is below a certain size - or if you've just decided to make your browser smaller to allow for easier operating of other programs). That's a minor issue, though .
Well I won't use the facebook and twitter options, but I don't mind them being added. There were some little things not working properly which have been corrected like the bookmark stars not visible when activated, and above all, all the missing functions now available on Android, so this update is a really good update imo
Comments
Edit: I may just be blind or crazy, but did the quote button also dissapear?
Edit 2: Ninja'd
Btw have the points in our profiles always been displayed twice, once before badges count and once befor posts count, or is this part of this forum glitch?
@Brude - ugly, overkill, and useless feature that replaced a useful one. I hope it's not forshadowing for the changes we'll find in BG:EE. *shudders*
Manual quoting is a pain. Are you listening, @Coriander?
(And while we're here, videos break the Best Of page, which now lacks sorting, categories, and any indication of how many upvotes each post has. If someone is not familiar with the old version of the page, it would appear to be random and uninteresting.)
The FB and Twitter links - meh.
Is there a link anywhere to these changes or do they just happen randomly?
As for the FB and Twitter icons, I think they should be moved elsewhere. The Insightful, Agree etc are features that we call can enjoy, right here. Not everyone has a FB or Twitter account.
Also, the quote button isn't just hidden, as in
display: none
orhidden="true"
, it is quite literally not there any more... Someonedun goofedmade a slight error when they copy and pasted the code for the core site - overriding the useful button for those other, less useful, buttons.The "account options" button is also missing its image. It is still there, though, the CSS is just wrong; the current rule is
.SpOptions { background-position: 0px -148px; }
, and it should be.SpOptions { background-position: 0px 0px; }
or.SpOptions { background-position: 0px 1px; }
. The extra 1px makes the icons line up that little bit better (edit: otherwise the icon looks a little high, not that it's terribly noticeable).Since I'm already typing this, I'll also say that the bookmark stars are a little off on the threads (they have been for some time now), not the one next to the other buttons that @Shandyr mentioned (next to your profile picture). The current property values for the :hover rule is
a.Bookmark:hover { background-position: 0 -22px; }
wherea.Bookmark:hover { background-position: 0 -28px; }
would be better. Also, for threads that have been bookmarked, the setting is also a little off.Threads that have been bookmarked should have gold stars (I assume?); the current setting is
a.Bookmarked { background-position: 0 -42px; }
, where it should bea.Bookmarked { background-position: -36px -28px; }
. The :hover rule (which is to say 'Unbookmark') should also be changed froma.Bookmarked:hover { background-position: 0 -82px; }
toa.Bookmarked:hover { background-position: -18px -28px; }
. Bookmark example: before and after.Edit: Quote button is back
The banner or title on the Best Of... page also repeats, meaning that it repeats the background image. To avoid this, the width need to be set as
h2.H { width: 854px; }
. Example. The only other way to avoid it is it make a title image specifically for that page that goes the entire width, which would be 1100px wide (it apparently doesn't scale the width, so it has the potential to go off the edge of the page if your resolution is below a certain size - or if you've just decided to make your browser smaller to allow for easier operating of other programs). That's a minor issue, though