[tw5] Re: Stylesheet question. I am trying to find the cause of the story river's top margin

2022-04-07 Thread Tyler Harris
Yeah, that's the reason. I failed to download an empty template.
Thanks.

On Thursday, April 7, 2022 at 4:57:34 PM UTC-5 Álvaro wrote:

> If you want tiddler on the top of viewport, it works in empty edition -> 
> https://tiddlywiki.com/empty.html
>
> [image: padding-top.png]
>
>
> Unless you are not looking for that or there is a lack of information 
> about what you want or about details of your tiddlywiki. 
> El miércoles, 6 de abril de 2022 a las 20:12:07 UTC+2, thyl...@gmail.com 
> escribió:
>
>> Setting padding-top to 0 didn't work.
>>
>> On Wednesday, April 6, 2022 at 6:08:14 AM UTC-5 Álvaro wrote:
>>
>>> The story river doesn't have any margin between it and the top of 
>>> viewport.
>>> If you are talking about the gap between the first tiddler in story 
>>> river and the top of viewport. It is caused by the `padding` of the story 
>>> river, you can remove it:
>>> ```
>>> .tc-story-river {
>>>   padding-top: 0;
>>> }
>>> ```
>>>
>>>
>>> El miércoles, 6 de abril de 2022 a las 9:23:00 UTC+2, thyl...@gmail.com 
>>> escribió:
>>>
 Hello,
 I am trying to find what the cause of the margin of the story river's 
 top margin. Can't find it in any stylesheet.

 This is what I have tried in a custom stylesheet.
 ```
 section.tc-story-river {
   position: absolute; //position: fixed also has been tried.
   top: 0px;
   border: 1px solid black;
 }
 ```
 But the CSS is not behaving the way I would expect. I looked at the all 
 the parent containers and cannot find anything could causing the story 
 river being pushed down.
 Thanks.

>>>

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a013237f-6fce-47b2-acfe-1144fc328d0dn%40googlegroups.com.


[tw5] Re: Stylesheet question. I am trying to find the cause of the story river's top margin

2022-04-07 Thread Álvaro
If you want tiddler on the top of viewport, it works in empty edition -> 
https://tiddlywiki.com/empty.html

[image: padding-top.png]


Unless you are not looking for that or there is a lack of information about 
what you want or about details of your tiddlywiki. 
El miércoles, 6 de abril de 2022 a las 20:12:07 UTC+2, thyl...@gmail.com 
escribió:

> Setting padding-top to 0 didn't work.
>
> On Wednesday, April 6, 2022 at 6:08:14 AM UTC-5 Álvaro wrote:
>
>> The story river doesn't have any margin between it and the top of 
>> viewport.
>> If you are talking about the gap between the first tiddler in story river 
>> and the top of viewport. It is caused by the `padding` of the story river, 
>> you can remove it:
>> ```
>> .tc-story-river {
>>   padding-top: 0;
>> }
>> ```
>>
>>
>> El miércoles, 6 de abril de 2022 a las 9:23:00 UTC+2, thyl...@gmail.com 
>> escribió:
>>
>>> Hello,
>>> I am trying to find what the cause of the margin of the story river's 
>>> top margin. Can't find it in any stylesheet.
>>>
>>> This is what I have tried in a custom stylesheet.
>>> ```
>>> section.tc-story-river {
>>>   position: absolute; //position: fixed also has been tried.
>>>   top: 0px;
>>>   border: 1px solid black;
>>> }
>>> ```
>>> But the CSS is not behaving the way I would expect. I looked at the all 
>>> the parent containers and cannot find anything could causing the story 
>>> river being pushed down.
>>> Thanks.
>>>
>>

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f8bd4169-3715-4be2-bbf0-2b1b2dc04baan%40googlegroups.com.


[tw5] Anyone know how I can expand on filters?

2022-04-07 Thread Tyler Harris
Does anyone know how I can expand on this? I am trying to include multiple 
fields in this filter.
```

  <$list filter="[fields[]prefix[FIELDNAME]]" 
variable="thisfield">
<$transclude field=<>/>
  

```
What I really would like to do is something like this:
```

  <$list filter="[fields[]prefix[FIELDNAME]]" 
variable="thisfield">
<$transclude field=<>/>
\variable 2
\variable 3
\variable 4 - also, one of these needs to be a link.

  

```

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e660d21b-7cb4-47d7-87ef-4bfe2a945f44n%40googlegroups.com.