Mezzanine is looking good and working well but I'm having trouble when I edit some blog posts and pages because the tinymce edit window displays in its own style using a very small font. I need it to be at least roughly WYSIWYG.
Following the documentation for django_tinymce and for tiny mce, I set up my settings thus:
TINYMCE_DEFAULT_CONFIG = {'theme': "simple",
'relative_urls': False,
'content_css': ','.join([os.path.join(STATIC_URL, path) for path in [
"css/animate.css",
"css/bootstrap.min.css",
"css/font-awesome.min.css",
"css/jquery.bxslider.css",
"css/main.css",
"css/mezzanine.css",
"css/bootstrap-theme.css",
"css/custom-styles.css"]]),
'theme_advanced_font_sizes': "10px,12px,13px,14px,16px,18px,20px",
'font_size_style_values': "10px,12px,13px,14px,16px,18px,20px"}
This has no effect. I'm not sure how to dig in and see what is going on. The above css files are all available when I type in the generated urls.