To prevent autmatic line breaks, wrap the images into a container
"white-space: nowrap;" (untested).
If required, I can elaborate tomorrow, but now I gotta run.
-- F.
With the following in StyleSheet:
.gallery {
white-space: nowrap;
}
this works for me:
<<forEachTiddler
where 'tiddler.tags.contains("photos")'
write 'tiddler.text'
begin '"{{gallery{"'
end '"}}}"'
>>
That FET macro call expects that tiddlers tagged with "photos" contain a
simple image reference (e.g. "[img[foo.png]]").
Since you need have that wrapper class anyway, you might as well use it
to define image dimensions:
.gallery img {
width: 100px;
height: 100px;
}
HTH.
-- F.