Bambi wrote:
I'm not sure I follow. Do you want to change the font in the content area? It'll be a simple css problem if thats what you're after. But I don't understand
so that it will appear in the standard joomla editor under styles and headings?
Hi Bambi,
The problem I was having was that when I added a new style to the css file it wasn't appearing in the drop down menu so my users culdn't apply them.
I solved it by creating a new css file and putting the following link to it in the index.php file
| Code: |
<link href="<?
php echo $mosConfig_live_site;?>/templates/<
?php echo $mainframe->getTemplate();?>/css/
user_css_styles.css" rel="
stylesheet" media="screen"
type="text/css" />
|
Anything I add in the user_css_styles.css now appears in the drop down menu backend of the site. It took me a long time to work this out and I couldn't see it documented anywhere.
J