Jump to content

Recommended Posts

Posted

For people who use tampermonkey, you can set the font size of posts running this:

 

// ==UserScript==
// @name         Dual unvierse Script
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://board.dualthegame.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    Array.prototype.forEach.call(document.querySelectorAll("[data-role='commentContent']"), i => i.style.fontSize = "1.6rem");
})();

 

I'd still love to see a native option for this since this solution is not ideal and would require further logic to handle edge cases. :(

Posted

Maybe not optimal, but have you tried adjusting your browsers settings? I'm pretty sure with most chrome based browsers, you can also increase font size (and everything else) by holding CTRL and pressing + or - to raise or lower the zoom level.

Posted
1 hour ago, DarkHorizon said:

Maybe not optimal, but have you tried adjusting your browsers settings? I'm pretty sure with most chrome based browsers, you can also increase font size (and everything else) by holding CTRL and pressing + or - to raise or lower the zoom level.


I appreciate you trying to help (and it does solve the immediate problem) but it doesn't solve the issue. 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...