Hi,
I have made a quick popup macro which basically uses:
<$transclude tiddler="tid" mode="block"/>
and if my tiddler “tid” happens to have a long paragraph, it just oveflows to the moon. Is there quick way of fixing this?
Hi,
I have made a quick popup macro which basically uses:
and if my tiddler “tid” happens to have a long paragraph, it just oveflows to the moon. Is there quick way of fixing this?
By default, tc-drop-down
applies CSS white-space:nowrap
. In addition, for links it also applies display:block; padding:0 14px 0 14px;
.
To override these default styles, you can define and apply your own CSS class (e.g., “my-drop-down”), like this:
$:/tags/Stylesheet
, containing:.my-drop-down { white-space:normal; }
.my-drop-down a { display:inline; padding:0; }
<div>
, add my-drop-down
to the class, like this:<div class="tc-drop-down my-drop-down">
<$transclude tiddler="HelloThere" mode="block"/>
</div>
enjoy,
-e
Ah perfect!
Thank you!
-Petri