> I wrapped the FET macro with a CSS class based on the style you
> mentioned and don't have the effect I need.

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.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to