Create TOC

2011년 8월 1일

Opera/clien.net 글꼴 변경하기

Opera 10.x 부터 clien.net 사이트에 들어가면 한글 글꼴이 명조로 표시되는 경우가 있다.

User Java Script 기능을 활성화하고 User JavaScript File경로를 지정한 다음, 해당 경로에 아래 내용의 fixclien.user.js 파일을 만들면 clien 글꼴이 나눔 고딕 으로 고정된다.

// ==UserScript==
// @name          fix clien
// @description   fix font for Opera
// @include       http://clien.career.co.kr/*
// ==/UserScript==

(function (){
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);
}

var scripts = document.getElementsByTagName('body')[0];
if (!scripts) return;
scripts = scripts.getElementsByTagName('script');
if (!scripts) return;

addGlobalStyle("body, td, p, input, button, textarea, select, td a, .c1, .member, #account dd, .view_content, .ct { font-family: NanumGothic, \"나눔고딕\", sans-serif; }")
})();

적용 전에는 아래와 같지만,

적용 후에는 아래와 같이 변경된다.