Forum Moderators: open

Message Too Old, No Replies

Tiny MCE problem

How can i change the font in the textarea?

         

asantos

4:24 am on May 31, 2006 (gmt 0)

10+ Year Member



Hi, i implemented the Tiny MCE for textareas in my CMS. I've been looking on how to change the default font face from the textarea but i cant accomplish that.

My best guess is to modify:
/themes/advanced/css/editor_content.css

There i change this part:


body, td, pre {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
}

But the modification doesnt show up any changes. Anybody?

zangs

12:14 pm on May 31, 2006 (gmt 0)

10+ Year Member



hello

your script :
body, td, pre {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
}

try this one :

TEXTAREA {
font-family: Verdana, Arial, Helvetica, sans-serif;
FONT-SIZE: 10px; COLOR: blue
}

zangs

asantos

2:45 pm on May 31, 2006 (gmt 0)

10+ Year Member



zangs,
that would work on a plain textarea. i was asking on how to do that in tinyMCE, where the textarea is actually replaced by an iframe.

i solved it with some tinymce config. thanks anyways.