Copied from another post (I can't remember where and when):

You can move a tiddler's tag display so that the tags appear in a line
below the tiddler rather than as a list that 'floats' along the right
side of the tiddler content.
In ViewTemplate, move this line:

<div class='tagged' macro='tags'></div>

just before the line:

<div class='tagClear'></div>

in StyleSheet, add the following CSS to override the default
appearance of the .tagged class (defined in StyleSheetLayout):

.tagged { float:left !important; }
.tagged li { display:inline; }

The first line makes the tag display appear left-aligned with the
tiddler content. The second line eliminates the 'newlines' between tag
values, so that they all appear on a single line instead of one-per-
line (note: if you have a LOT of tags, they may still wrap onto
additional lines if the line gets wider than the tiddler display
area). You may also want to change or eliminate the background for
the .tagged area:

.tagged { background:transparent !important; border:0 !important; }

Cheers,

Ton


On Oct 15, 9:19 am, UBi <[email protected]> wrote:
> This works for me without any additional plugins:
> First move the tagged and tagging DIVs after the viewer DIV in
> ViewTemplate. You can kick out the tagClear DIV, too.
> Then, insert this into your StyleSheet and tweak it to taste:
> ----------
> .tagging ul, .tagged ul {list-style:none;  font-weight:normal;
> visible:block; }
> .tagging li, .tagged li { display: inline; }
> .tagging li .tiddlyLinkExisting { font-weight:normal; }
> .tagging, .tagged, .selected .tagging, .selected .tagged {
>   float:none;
>   border:none;
>   margin: 0;
>   padding: 0;
>   background: [[ColorPalette::Background]];
>   font-size:.8em;}
>
> ----------
> I'm no CSS guru, so it _may_ be improvable :-)
>
> UBi

-- 
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