탭 부분의 글꼴만 바꾸고 싶은데요
Posted: 2005 05 31 12:15 52
제목 그대로입니다. ^^; Curacao테마를 사용중인데요, 탭 부분의 글꼴이 너무 작게 나오네요; 그 글꼴 크기를 바꾸고 싶은데; 방법이 없을까요?
.../Profiles/???????.default/chrome/userChrome.css 라는 파일을 만들고 아래 코드들 추가해주세요. 폰트 크기는 '20pt' 를 수정하시면 됩니다. 20pt 정도면 연세 많으신 분들이 좋아하실 듯 합니다...^^제목 그대로입니다. ^^; Curacao테마를 사용중인데요, 탭 부분의 글꼴이 너무 작게 나오네요; 그 글꼴 크기를 바꾸고 싶은데; 방법이 없을까요?
Code: Select all
/*
* Edit this file and copy it as userChrome.css into your
* profile-directory/chrome/
*/
/*
* This file can be used to customize the look of Mozilla's user interface
* You should consider using !important on rules which you want to
* override default settings.
*/
/*
* Do not remove the @namespace line -- it's required for correct functioning
*/
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
.tabbrowser-tabs .tab-text {
font-size: 20pt !important;
}
.../Profiles/???????.default/chrome/userChrome.css 라는 파일을 만들고 아래 코드들 추가해주세요. 폰트 크기는 '20pt' 를 수정하시면 됩니다. 20pt 정도면 연세 많으신 분들이 좋아하실 듯 합니다...^^chooboo wrote:제목 그대로입니다. ^^; Curacao테마를 사용중인데요, 탭 부분의 글꼴이 너무 작게 나오네요; 그 글꼴 크기를 바꾸고 싶은데; 방법이 없을까요?
Code: Select all
/* set default namespace to XUL */
.tabbrowser-tabs .tab-text {
font-size: 20pt !important;
}