Como posso forçar o Firefox a sempre usar o Tahoma em vez do Arial? [fechadas]

1

Como posso forçar o Firefox a sempre usar o Tahoma em vez do Arial no Windows 7? Eu ficaria sitisfied mesmo se substituir Tahoma por Arial em todo o sistema também. Estou farto de não ser capaz de distinguir I e I ( I e l ) nos sites.

    
por Anixx 09.05.2014 / 12:52

1 resposta

1

Não sei se entendi a pergunta.

Se você pretende alterar a fonte de cada site (para substituir a fonte escolhida), use GreaseMonkey para aplicar um estilo personalizado ... Isso naturalmente tem o potencial de processar páginas incorretamente ...

body, td, input, textarea, select, a, h, span, div {
font-size: 8pt !important;
font-family: Tahoma !important;
}

Também sugere que você poderia tentar substituir SOMENTE Arial com Tahoma

// ==UserScript==
// @name          Comic Sans to Segoe font
// @namespace     for bb
// @include     *
// ==/UserScript==

var elementList = document.getElementsByTagName('*');
    for (var i = elementList.length - 1; i >= 0; i--) {
        var elementItem = elementList[i];
        var style = getComputedStyle(elementItem, '');
                elementItem.style.fontFamily = style.fontFamily.replace(/Comic Sans MS/i, 'segoe');

}

Fonte para CSS de

Se você quer dizer a fonte usada pelo FireFox, então:

Changing Font

To change the font:

    Click the menu button New Fx Menu and choose Options
    Select the Content panel.
    Under Fonts & Colors, use the drop-down menus to select the font and font size of your choice.

    font.png

    Click OK to close the Options window 

Custom Fonts

Some websites have custom fonts, to disable them:

    Click the menu button New Fx Menu and choose Options
    Select the Content panel.
    Under Fonts & Colors, click the Advanced... button.

    advance.png

    In the window that opens uncheck the box next to Allow pages to choose their own fonts, instead of my selections above.

    custom_font.png

    Click OK to close the Fonts window.
    Click OK to close the Options window

Fonte

    
por 09.05.2014 / 12:57

Tags