help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[solved] Re: Info nodes titles font size customization


From: Rodolfo Medina
Subject: [solved] Re: Info nodes titles font size customization
Date: Sat, 11 Oct 2008 12:06:34 +0100
User-agent: Gnus/5.110007 (No Gnus v0.7) Emacs/22.0.50 (gnu/linux)

Rodolfo Medina <rodolfo.medina@gmail.com> writes:

> In Info mode, node titles are hilightened by default.  Scrolling the manual, I
> couldn't find out how to customize those font sizes.
>
> Is it possible, and how?



In my ~/.emacs I put the following stuff:

(add-hook
 'Info-mode-hook
 (lambda ()
   (set-face-attribute
    'info-title-1 nil
    :weight 'bold
    :height 1
    :family "-Sony-Fixed-Medium-R-Normal--16-120-100-100-C-80-ISO8859-1"
    )))

(add-hook
 'Info-mode-hook 
 (lambda ()
   (set-face-attribute 
    'info-title-3 nil
    :weight 'bold
    :height 1
    :family "-Sony-Fixed-Medium-R-Normal--16-120-100-100-C-80-ISO8859-1"
    )))

(add-hook 
 'Info-mode-hook 
 (lambda ()
   (set-face-attribute 
    'info-menu-header nil
    :weight 'bold
    :height 1
    :family "-Sony-Fixed-Medium-R-Normal--16-120-100-100-C-80-ISO8859-1"
    )))


One can learn more about those variable from the Elisp manual (`C-h i' from
Emacs buffer).

Thanks to all who helped.
Rodolfo


reply via email to

[Prev in Thread] Current Thread [Next in Thread]