I coul not add this to serendipity_event_bbplugin.php, because I am only guest at supersized.
But I add these in the head-nugget:
Code: Select all
<style type="text/css">
.bb-list-unordered li {
color:orange;
font-size: 200%;
list-style-type: lower-alpha;
}
.bb-list-ordered li {
color:red;
font-size: 200%;
list-style-type: lower-alpha;
}
.bb-list-ordered-la li {
color:red;
font-size: 200%;
list-style-type: lower-alpha;
}
</style>
then I make an entry with
Code: Select all
[list]
[*]The first possible answer
[*]The second possible answer
[*]The third possible answer
[/list]
ölkjklöjl
[list=a]
[*]alpha
[*]beta
[*]gamma
[/list]
ölkjklöjl
[list=1]
[*]eins
[*]zwei
[*]drei
[/list]
The result:
http://mein-test.supersized.org/archives/12-sdfsdf.html
There are many problems:
first:
makes an list with the class "unordered"
Code: Select all
<ul class="bb-list-unordered">
* The first possible answer
* The second possible answer
* The third possible answer
</ul>
in nice, big orange letters
But the
makes
Code: Select all
<ol class="bb-list-ordered,bb-list-ordered-la">
1. alpha
2. beta
3. gamma
</ol>
with NO effect on color, size or any thing, that is set in hte css.
Same on the List with =1.
It seems to me, that there could be a problem with assigning two classes to "class"?
And there is another problem:
In the bb-html-code there are three lists, each after the other, no one inlcudes a list in a list. But in the output, there comes:
Code: Select all
<ol class="bb-list-ordered,bb-list-ordered-la">
alpha
beta
gamma
ölkjklöjl
<ol class="bb-list-ordered,bb-list-ordered-d">
eins
zwei
drei
</ol>
</ol>
A list opened wtih =a or =1 includes the next list, even if there is a [/list] between them
