Forum Discussion
Line and paragraph spacing in Rise
Without knowing what block types were used to create your example it is difficult to make useful comments.
In general, Rise does not offer any control over line spacing, e.g. 1, 1.5, or 2.
You can have control of spacing between blocks by adjusting the padding above and below the block.
Within a text block, you can use ENTER to create a new paragraph or SHIFT+ENTER. The latter will create less space between paragraphs.
- Snorrski3 years agoCommunity Member
The problem with the shift+enter approach is that it will be part of the same paragraph (programming-wise), and thus have the same formatting as the previous line.
To control spacing between paragraps with different formatting or orientation, you can use multiple text blocks.
Another option is to do as Angelo suggests, and hack it. The best way to do this is probably to open main.bundle.css in your exported product, and edit the
.block-text
class padding attribute to a size you want."Simply" open the file in a text-editor, search for ".block-text" and edit
.block-text{padding:3rem 0;transition:padding .5s;font-size:1.7rem}
to, eg.block-text{padding:1.5rem 0;transition:padding .5s;font-size:1.7rem}
. - DeniseCumberlan2 years agoCommunity Member
THANK YOU - Shift+Enter is just what I was asking - Thank you! Its the simple things