the people are on the right

Discussion of all aspects of the website, wiki, and forums, including assistance requests and new ideas for them.

Moderator: Forum Moderators

Post Reply
User avatar
HonzaCZ
Posts: 38
Joined: August 7th, 2018, 2:23 pm
Location: doin your mom

the people are on the right

Post by HonzaCZ »

what the helll how do i fix that :shock: :hmm:
Pilauli
Posts: 115
Joined: August 18th, 2020, 12:56 pm

Re: the people are on the right

Post by Pilauli »

It is apparently a side-effect of this.
https://forums.wesnoth.org/viewtopic.php?f=17&t=53312

It disorients me, too, but there's apparently no simple way to fix it.
User avatar
James_The_Invisible
Posts: 534
Joined: October 28th, 2012, 1:58 pm
Location: Somewhere in the Northlands, fighting dark forces
Contact:

Re: the people are on the right

Post by James_The_Invisible »

You can change it with custom styles in your browser. You just need to somehow use this CSS code:

Code: Select all

.postprofile { float: left !important; }
for this website. Where exactly you have to put it depends on your browser and maybe installed extensions.
Note: this code is not a perfect solution but it is a good start. (And for the record I do not like this change either. That is why I looked for ways to revert it.)
User avatar
ForPeace
Posts: 164
Joined: December 12th, 2015, 3:09 pm
Location: Kraków, Poland

Re: the people are on the right

Post by ForPeace »

James_The_Invisible wrote: September 30th, 2020, 3:01 pm You can change it with custom styles in your browser. You just need to somehow use this CSS code:

Code: Select all

.postprofile { float: left !important; }
for this website. Where exactly you have to put it depends on your browser and maybe installed extensions.
Note: this code is not a perfect solution but it is a good start. (And for the record I do not like this change either. That is why I looked for ways to revert it.)
Thanks James! I extended it to the JavaScript way:
Copy this to the browser console:

Code: Select all

var sheet = document.createElement('style')
sheet.innerHTML = ".postprofile { float: left !important; }}";
document.body.appendChild(sheet);
Polish BfW fansite | Polish BfW translation | My Ladder profile

"When I say I've been playing for 10 years people come saying they've played for 15 years and that I know nothing about this game because I didn't use to play when the TRUE pros were playing xD" ~Hejnewar
User avatar
Ravana
Forum Moderator
Posts: 2948
Joined: January 29th, 2012, 12:49 am
Location: Estonia
Contact:

Re: the people are on the right

Post by Ravana »

If you want this script to run on every page without having to enter it again I suggest https://www.tampermonkey.net/

Then the script for this action would look like

Code: Select all

// ==UserScript==
// @name         Wesnoth forum profile left
// @namespace    ravana
// @version      0.1
// @description  Move user information left
// @author       Ravana
// @match        ://forums.wesnoth.org/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var style = document.createElement('style');
    style.innerHTML = `
.postprofile {
float: left;
}
`;
    document.head.appendChild(style);
})();
Post Reply