Page 1 of 1

Is it possible to edit the size of text in the CSS file?

PostPosted: Mon May 10, 2004 9:23 pm
by luben
Is this possible at all?

Thanks in advance

Luben

PostPosted: Tue May 11, 2004 7:50 am
by srijith
what exactly do you mean by "edit the size of text"? Make the CSS section smaller in byte-size?

Sorry I am not making myself clear.....

PostPosted: Tue May 11, 2004 8:14 am
by luben
I meant the size of text used in my galleries (e.g. names of galleries etc.) I want it to be 8pt or 10pt not 12pt as it is currently. I had a look at the current CSS and could not see a text size entry.

Thanks a lot for your help

Luben

Fonts size

PostPosted: Tue May 11, 2004 4:47 pm
by robert
Fastest way would be to update global setting by adding a font size...

You have........

DIV,BODY,TD,TH,TR,TABLE,FONT,INPUT,LI,UL,FORM,
BLOCKQUOTE,P,B,I,H1,H2,H3,H4,H5 {
font-family: arial,helvetica,sans-serif;
color : #000000;
background : white;

You need.......

DIV,BODY,TD,TH,TR,TABLE,FONT,INPUT,LI,UL,FORM,
BLOCKQUOTE,P,B,I,H1,H2,H3,H4,H5 {
font-family: arial,helvetica,sans-serif;
font-size: 10pt;
color : #000000;
background : white;

As I recall (?), H1 controls the gallery titles.

Separate lines can be added to change fonts for each heading (H1 thru H5). Look at other style sheets as examples.

Robert

Thanks Rob....

PostPosted: Tue May 11, 2004 10:25 pm
by luben
Thanks Rob. I'll give that a go. As you can see I still have a lot to learn about CSS.

All the best

Luben