*Actually, you can do the image gallery thing on a current TW5, in two easy 
steps:1. Add the imggal class to your stylesheet (adjust the column count 
as necessary from 3 to the number of columns you desire)*

/*IMGGAL*/

@media (min-width: 600px) {

    .imggal {
        -moz-column-count: 3;
        -moz-column-gap: 10px;
        -webkit-column-count: 3;
        -webkit-column-gap: 10px;
        column-count: 3;
        column-gap: 10px;
    }

    .imggal-item {
        width: 100%;
    }

}

.imggal-item {
    display: inline-block;
    border: 0px solid <<colour muted-foreground>>;
    padding: none;
    margin-bottom: 0px;
    background: #fff;
    font-size: 0em;
    line-height: 0;
}

.imggal-item h1 {
    font-weight: 500;
    font-size: 16px;    
}

*2. Add this to any tiddler to create an image gallery of all tiddlers 
tagged with that tiddler's title.* *Clicking on any image opens the 
tiddler.*

<div class="imggal">

<$list filter="[is[current]tagging[]sort[title]]">

<div class="imggal-item">

<$link to={{!!title}}><$transclude/></$link>

</div>

</$list>

</div>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.

Reply via email to