Hello there!
This is probably not an issue anyone else has (if my brief search is any indication), and I apologize in advance if it pollutes this thread (I’m new to the community and as a tiddlywiki user).
I’m using TiddlyWiki 5.3.6, and I’m puzzled by a CSS issue with regards to the Images macros in Shiraz. Normally, any image macro of the Shiraz plugin can be floated left or right of a Tiddler, and the plugin relies for that on the style sheet defined in $:/plugins/kookma/shiraz/styles/image-alignment
as so:
/*Image aligning classes*/
.image-align-end{
float:right;
margin:0.5em 0 1.3em 1.4em;
}
.image-align-start{
float:left;
margin: 0.5em 1.4em 1.3em 0;
}
.image-align-center{
display:block;
margin: 0.5em auto 1.3em;
}
.image-float-none {
float: none !important;
}
Very simple, right? However, for the life of me, I can’t understand why in my TiddlyWiki, the float:
doesn’t apply:
Inspecting the element in the browser yields that the class image-align-right is correctly passed to the element (<figure>
):
However, in the properties of the class shown by the inspector, there is no float: right
;

Evidently, adding it by hand solves the issue:

I’m puzzled as to what’s really happening here… (note the image is simple tiddler with the svg image, but the same issue shows with bitmap image types as well).
Any help figuring this out would be appreciated, and apologies again if this is an issue no one else has encountered, or if it has already been discussed elsewhere and I missed it 