Is there a quick way to change the font and font size for the entire site ?

Comments

dman’s picture

QUICK: Hold CTRL and roll your scroll wheel.

Real answer, edit your themes style.css to include something like

body{
  font-size:150%;
}

... whether that works depends on your chosen theme design - whether it used % or em when setting font sizes, or whether it's hard-coded pixel.point sizes (which you cannot override globally)

Most of the time this will give very mixed results, with some things (hopefully the content text) scaling as requested) and other bits (like graphical nav elements) breaking the layout quite badly at extreme scales. Using the scrollwheel trick will display how much work is required to make it work.

It's a really big job unless you actually understand CSS!

.dan.
How to troubleshoot Drupal | http://www.coders.co.nz/

pmomidi’s picture

Thx. for the suggestion.

sasconsul’s picture

The fourseasons theme has some simple javascript to change the color scheme and the font size of the page.

It currently does not remember the change so you'll have to fix back on each page.

Stuart

attheshow’s picture

There's a Drupal 6 module that I built for this a few months ago, called Text Resize.
http://drupal.org/project/text_resize
Let me know how it goes!

Mark W. Jarrell
Manager of Web Services
Jones Knowledge Integration Group, Inc.
http://www.jones.com
http://www.jonesknowledge.com
http://www.jonesdifference.com
http://www.jiu.edu
Twitter: attheshow

Babalu’s picture

and how can i change the font type ?