I am using content_css to link to all my css for my site.
This works and the content in the tiinyMce editor window is styled as per the css files.
My site has a header, content, footer layout and i apply specific styles to links in the content section like so...
.contentWrapper a { background: url ... etc
So these styles are not applied in the editor window as the links are not in a div with a class of contentWrapper.
I know i can create another css file and apply these styles directly to a tags in there and only reference it for tinyMCE but this would duplicate my site css.
is there anyway i can specify something like .tinyMce a { .. or something?