I'm at my whits end. I've tried everything posted on the forum and haven't found a solution.
I'm trying to add custom style options to the WYSIWYG editor and for some reason it only shows one class.
No matter how many additional classes I edit, or where I put them, or tell TinyMCE where to look for the style sheet I keep getting just one class show up.
currently the editor css looks like this:
Code:
body {
background: #fff;
font-family: Tahoma,Helvetica,Arial,sans-serif;
line-height: 1.3em;
font-size: 76%;
color: #333;
}
h1 {
font-family:Helvetica ,Arial,sans-serif;
font-size: 16px;
font-weight: bold;
color: #666;
}
h2 {
font-family: Arial, Helvetica,sans-serif;
font-size: 14px;;
font-weight: normal;
color: #333;
}
h3 {
font-weight: bold;
font-family: Helvetica,Arial,sans-serif;
font-size: 13px;
color: #135cae;
}
h4 {
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
color: #333;
}
a:link, a:visited {
color: #1B57B1; text-decoration: none;
font-weight: normal;
}
a:hover {
color: #00c; text-decoration: underline;
font-weight: normal;
}
.PlainText { font-family: Times New Roman,Times,serif; font-size: 12px; font-style: normal;line-height: normal; font-weight: normal; color: #000000; }
.Questions { font-family: Times New Roman,Times,serif;font-size: 12px;font-style: normal;line-height: normal;font-weight: normal;color: #800020; }
div.caption { padding: 0 10px 0 10px; }
div.caption img { border: 1px solid #CCC; }
div.caption p { font-size: .90em; color: #666; text-align: center; }
yet the only thing that appears in the style drop down is "caption"
I really need for the PlainText and Questions to appear but it just won't show up...
Can anybody shed some light onto my problem?