Put this in a tiddler tagged with $:/tags/Stylesheet:
.tc-dropzone>p { margin:0; }
Here’s how I came up with this solution:
- View your demo wiki
- Right-click in the blank space below the story river
- Choose “inspect” from the popup menu to open the browser’s “developer tools” window
- Note that the area you clicked on is
<div class="tc-dropzone">
- Click the arrow next to that line of HTML to show the child elements.
- Note the last 3 elements are
<p>...</p>
- Mouse over those elements to highlight the corresponding rendered content in the main window
- The last two
<p>...</p>
elements show that they have margins in the main window, accounting for the whitespace that you want to eliminate.
- Use
.tc-dropzone>p { margin:0;}
to remove these margins from the p
elements that are immediate children of the .tc-dropzone
enjoy,
-e