You did
not read my "(*)" post!!!
You are trying to look for a backend
event plugin in the
sidebar frontend plugin list!
In Serendipity Plugins there is a big difference between
event and
sidebar plugins. The latter ones are most commonly additions to hook something into the frontpage sidebar only. Some do not even need an event plugin to do this. So the
main place to look for (if you do not want something frontend sidebar specific) is in most cases the downscrolled
Ereignis-Plugins: "Hier klicken, um Ereignis-Plugin zu installieren" link.
About the justification I told you where and why this happens. If CKEDITOR still relies on this issue (please check, as this might be definitely better **), you have to change the bulletproof style.css file. This is where
Code: Select all
/*** General styles ***/
p {
text-align: left;
}
is generated. You can change this by /*text-align: left;*/ (which might not be a good idea) or add an
Code: Select all
.entry-content.serendipity_entry_body div[style] p {
text-align: justify;
}
to the end, or put this inside a user.css file, which then has to get enabled by you in the themes config.
(**) Using WYSIWYG-Editors can make existing frameworks need to change on some edges. like in this justify case. This is
one of the reasons, why CKEDITOR does not not allow this kind of manipulation by defaults standard package and seems somehow restricted. You can still do it and change something manually in the Sourcecode view though. Or even install the
http://ckeditor.com/addon/justify plugin to ckeditor for this.
BUT - If you need to justify text in every blog posts, it is preferable to just enable this in your themes style or user.css file.