I'm not sure what the root of this problem is, but try adding the
following to your StyleSheet:
.popup .tagger a {
display: inline;
}
HTH.
-- F.
For some reason Firebug doesn't display the styles for these popups, so
I'm having trouble determining the CSS rule set causing this.
Anyway, this seems to be a design feature of sorts - I found this in the
default [[MptwStyleSheet]]:
/* Tagger Plugin users uncomment this. from sb56637 */
/*
.popup li a {
display:inline;
}
*/
Simon, if you're around, this might be changed to something like the
following, so users don't have to modify the StyleSheet themselves:
/* TaggerPlugin */
.popup li .tagger a {
display:inline;
}
-- F.
That's why I added the ".tagger" selector - if the TaggerPlugin is not
used, this rule set should be ignored.
-- F.