From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Rodolfo Medina Newsgroups: gmane.emacs.help Subject: [solved] Re: Info nodes titles font size customization Date: Sat, 11 Oct 2008 12:06:34 +0100 Organization: SunSITE.dk - Supporting Open source Message-ID: <87bpxrqtl1.fsf@gmail.com> References: <87ej2v5njx.fsf@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1223721771 30944 80.91.229.12 (11 Oct 2008 10:42:51 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 11 Oct 2008 10:42:51 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Oct 11 12:43:48 2008 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1KobwY-0006HM-SW for geh-help-gnu-emacs@m.gmane.org; Sat, 11 Oct 2008 12:43:31 +0200 Original-Received: from localhost ([127.0.0.1]:38704 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KobvU-0004NR-OS for geh-help-gnu-emacs@m.gmane.org; Sat, 11 Oct 2008 06:42:24 -0400 Original-Path: news.stanford.edu!headwall.stanford.edu!newshub.sdsu.edu!feeder.erje.net!news.germany.com!news.osn.de!diablo2.news.osn.de!news.tele.dk!news.tele.dk!small.news.tele.dk!feed118.news.tele.dk!dotsrc.org!filter.dotsrc.org!news.dotsrc.org!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.110007 (No Gnus v0.7) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:qb5LTIF2V4I1NSCeblIMsW/fqdc= Original-Lines: 47 Original-NNTP-Posting-Host: 151.80.207.97 Original-X-Trace: news.sunsite.dk DXC=b_gVIDN\`JF3j@n`X75YjCYSB=nbEKnkK4mi>jDOWoHG:AocXk=\=_DT7bXfBO; G:EKAib\KDO`hBm=c5DAkLCDLgT[fKaVZ5<@bO?[J]agJ0I Original-X-Complaints-To: staff@sunsite.dk Original-Xref: news.stanford.edu gnu.emacs.help:163345 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:58688 Archived-At: Rodolfo Medina 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