🏠 Home 

RYM Release Rating Center Fix

Fixes the off-center rating on releases on artist pages


Install this script?
// ==UserScript==
// @name         RYM Release Rating Center Fix
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Fixes the off-center rating on releases on artist pages
// @author       nate
// @match        https://rateyourmusic.com/artist/*
// @icon         https://www.google.com/s2/favicons?domain=rateyourmusic.com
// @grant        none
// ==/UserScript==
(function() {
'use strict';
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('.disco_cat_inner { float: none; }');
})();