Page 1 of 1
How to force my template to font Normal/ARIAL/SMALL?
Posted: Mon Jul 10, 2006 8:44 pm
by duplay
I would like to force my template to default to Normal/Arial/Size"small" everytime a new page is created or a person goes to edit a page. Is their a way to do this?
I am creating pages for users to create and edit, and i would like everyone to use the same font type and size for every page of text.
thanks,
MJD
Re: How to force my template to font Normal/ARIAL/SMALL?
Posted: Mon Jul 10, 2006 10:01 pm
by Dr.CSS
you could look thru the .php for the editor and remove the line that has the font style and size dropdown :.
someone else did this they left the ones they wanted so users had no choice...
found it in the fckconfig.js lines 94 > 104 has settings in them that you may be able to edit to your liking... (i've not tested it my self) :.
Re: How to force my template to font Normal/ARIAL/SMALL?
Posted: Tue Jul 11, 2006 12:54 pm
by duplay
Mark,
I was a little lost with the fckconfig.js. Where did you find that file? On the server? I did a search on my server and couldnt find anything by that name.
What i tried was editing the "typography" css and did the following:
/* TYPOGRAPHY */
body {
text-align: left;
font-family: Arial;
font-size: 75.01%;
line-height: 1em;
}
div {
I changed to 100% and everything worked great except the menu text was now 100 arial. Any way i can do this and then just change the menu text back to a smaller size (75%)? Or does everything assinged to that template's css become arial 100%
Re: How to force my template to font Normal/ARIAL/SMALL?
Posted: Tue Jul 11, 2006 2:00 pm
by Dr.CSS
path to file... modules>FCKeditorX>FCKeditor
you can tell anything to have a specific font... whatever you don't specify will take the body font call...
#menuwrapper{font-size:??px}
#content{font-size:??px}
#content h2{font-size:??px} etc. etc.
Re: How to force my template to font Normal/ARIAL/SMALL?
Posted: Tue Jul 11, 2006 2:24 pm
by duplay
Mark,
I think that did it! I went into typography and deleted all the text except Arial, then I went into the editor and added font-size: 100% which sets the user up to automatically type with Arial Small.
Your the man! THANKS FOR ALL THE HELP!
MJD