How can I change the font and font size for the entire website ?

pmomidi - March 29, 2008 - 05:47

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

non-trivial, unless the theme is really flexible

dman - March 29, 2008 - 06:08

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/

Thanks

pmomidi - March 29, 2008 - 11:46

Thx. for the suggestion.

 
 

Drupal is a registered trademark of Dries Buytaert.