View Full Version : Problems with font


Zeate
02-08-2003, 06:07 PM
Hi! I posted this code in my css-file,

body {
font-family: Verdana;
background-image: url(back3.gif);
font-size: x-small;
color: #00ccff;
scrollbar-face-color: #000000;
scrollbar-shadow-color: #00000;
scrollbar-highlight-color: #000000;
scrollbar-3dlight-color: #FFFFFF;
scrollbar-track-color: #000000;
scrollbar-arrow-color: #FFFFFF;
}

As you might see, my font is Verdana, and that font is a little larger then Times New Roman, but I want it to be like size three. But when I write a smaller font-size, it's not getting any smaller.. somebody who can help me?

misfit
02-08-2003, 08:03 PM
Instead of using the words... small, x-small, etc. you can put a pixel size in there.

font-size: 9px;

9px, is usually pretty small with verdana.
If it's too small, try 10px, 11px, 12px, etc. again!

All righty? :)