Forums / General Questions / Adjusting text size with CSS

Adjusting text size with CSS

Locked
Results 1 to 2 of 2
This thread is locked. New replies are disabled.
09 Feb 2010, 20:26
#1
krisdiamond avatar

krisdiamond

New Zenner

Join Date:
May 2009
Posts:
28
Plugin Contributions:
0

Adjusting text size with CSS

Hello all

Im trying to get the size of my main text down a bit, ive tried to adjust a fe things in CSS sheet, but cant fix this sizing issue

Can someone please direct me to right bit off CSS to adjust.

Many thanks
Kris

www.jewellerysensations.com
09 Feb 2010, 20:52
#2
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Posts:
21,876
Plugin Contributions:
6

Re: Adjusting text size with CSS

You have the body text set considerably larger than the ZC standard of 62.5%
body {
	margin: 0;
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 75.5%;
	color: #990000;
	background-color: #fff;
	}
so you could bring that down. Otherwise, you will have to specify more precisely what you are referring to with "main text", as there are many different elements that could qualify.

If you mean the "Welcome..." on the home page, that is
h2.greeting {}