How to force my template to font Normal/ARIAL/SMALL?

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Post Reply
User avatar
duplay
Power Poster
Power Poster
Posts: 289
Joined: Tue Mar 14, 2006 1:57 pm

How to force my template to font Normal/ARIAL/SMALL?

Post 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
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: How to force my template to font Normal/ARIAL/SMALL?

Post 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) :.
User avatar
duplay
Power Poster
Power Poster
Posts: 289
Joined: Tue Mar 14, 2006 1:57 pm

Re: How to force my template to font Normal/ARIAL/SMALL?

Post 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%
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: How to force my template to font Normal/ARIAL/SMALL?

Post 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.
User avatar
duplay
Power Poster
Power Poster
Posts: 289
Joined: Tue Mar 14, 2006 1:57 pm

Re: How to force my template to font Normal/ARIAL/SMALL?

Post 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
Post Reply

Return to “Layout and Design (CSS & HTML)”