To add your stylesheet to the TinyMCE editor just add this as a filter. you can do this in your functions.php file.
/*
*
* Adds a filter to append the default stylesheet to the tinymce editor.
*
*/
if ( ! function_exists('tdav_css') ) {
function tdav_css($wp) {
$wp .= ',' . get_bloginfo('stylesheet_url');
return $wp;
}
}
add_filter( 'mce_css', 'tdav_css' );
Lawtai..
I was looking at your archives…How did you do them? Thats how i wanted to do it or am trying to do
i am trying to accomplish this right now but im having a hard time. It would be really simple if i could use a id tag in the links via links manager but there is none 🙁
its really good…how do you do your navigation with the current highlighting?