New forum! Post bugs & errors in here *CHECK FIRST POST FOR ISSUES FIRST - P.S. THE MM IS OPEN*

Status
Not open for further replies.
This is so wiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiide. Like...REALLY wiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiide.

Seems to work very well on mobile, just horribly wiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiide in my 2560x1440 browser window. Too much unused space and forces me to swing my head when reading posts.
bo8UbCL.png "]

:p
 
Big thanks to Thesnipergecko tbh, his theme (and the dark theme but I've never been a fan of dark themes) fix a lot of the glaring design issues...

Still not seen/found a way to disable the annoying quote/reply pop-up on text selection, anyone know how without messing around disabling javascript?
 
Big thanks to Thesnipergecko tbh, his theme (and the dark theme but I've never been a fan of dark themes) fix a lot of the glaring design issues...

Still not seen/found a way to disable the annoying quote/reply pop-up on text selection, anyone know how without messing around disabling javascript?

You can tailor your alert preferences in your user settings.
 
gJzAOQ.png
 
No collapsible forums

Tampermonkey javascript to fix this:
Code:
(function() {
    var cols = getCollapsed();
    var ids = cols.split(",");
    for(var i = 0; i <ids.length; i++) {
collapseView(ids[i]);
    }
    var titles = document.getElementsByClassName("nodeTitle");
    for (var x = 0; x < titles.length; x++) {
        if(titles[x].parentNode.className == "categoryText"){titles[x].prepend("+/-  ");}
        titles[x].addEventListener('click', toggleView, false);
}})();
function toggleView(evt){

    if (evt.target !== this)
    return;
if(evt.target.className.indexOf("collapsed") === -1)
{
   evt.target.className += " collapsed";
   evt.target.parentNode.parentNode.parentNode.childNodes[3].style.display = "none";
   collapse(evt.target.parentNode.parentNode.parentNode.id.split(".")[1]);
}
    else{
   evt.target.className = evt.target.className.replace(" collapsed","");
   evt.target.parentNode.parentNode.parentNode.childNodes[3].style.display = "block";
   expand(evt.target.parentNode.parentNode.parentNode.id.split(".")[1]);
    }
}
function collapseView(id){
    var titles = document.getElementsByClassName("node_"+id);
    for (var i = 0; i < titles.length; i++) {
    titles[i].children[0].children[0].children[0].className += " collapsed";
      titles[i].childNodes[3].style.display = "none";
}
}
function collapse(id) {
    var col = getCollapsed();
    col+=","+id;
    document.cookie = "collapsed=" + col + ";path=/";
}
function expand(id) {
    var col = getCollapsed();
    var remove = ","+id;
    var newcol = col.replace(remove, "");
    document.cookie = "collapsed=" + newcol + ";path=/";
}
function getCollapsed() {
    var name = "collapsed=";
    var decodedCookie = decodeURIComponent(document.cookie);
    var ca = decodedCookie.split(';');
    for(var i = 0; i <ca.length; i++) {
        var c = ca[i];
        while (c.charAt(0) == ' ') {
            c = c.substring(1);
        }
        if (c.indexOf(name) === 0) {
            return c.substring(name.length, c.length);
        }
    }
    return "";
}

*untested, use at your own risk, etc
 
AVForums is a good example of colours.. only issue I have is it's not easy to access your created threads.. have to go into profile, then postings, then view threads.
 
Yeah, i'm all for change and expected an avalanche of complaints, but it really is quite poor!

The features are nice - but the design is horrendous. Shadow background avatars? What is this, 2009?
 
With his permission of course, I think you should make Thesnipergecko's changes permanent, and then build from there.

The difference is staggering when you turn it on and off while viewing a thread!

There is an issue with your theme though Thesnipergecko, the tags at the top overlap the title in smaller windows. Doesn't happen when un-skinned. :)
 
He means the javascript which pops up if you select text by dragging a mouse over ;)

Indeed, I dunno if it's just me that gets annoyed with those but as I often select text at random whilst reading it's really annoying to have a pop up (although I'm yet to actually click the pop up which is something I guess...)
 
Status
Not open for further replies.
Back
Top Bottom