Forum Discussion
KrisShenenbe782
9 days agoCommunity Member
Rise: Remove White Space Above Nav Button
Hi all. I have a Statement B block with a transition sentence at the end of the page, and then there is the Rise default Next navigation element. There is extra white space between the block and the ...
PhilFoss
3 days agoCommunity Member
Kris, the only way I've been able to do this is with CSS, it looks like below:
section.blocks-lesson {
padding-block-end: 0;
}
That would apply to the entire course, all lessons.
If you only want this on a single lesson, you need to get the lesson id and it would look like below. Your lesson id will be a long string of letters/numbers.
div[data-lesson-id="F27LI_LJSed2d7gGcFnrbjYrWUZxGeZY"] section.blocks-lesson {
padding-block-end: 0;
}
Related Content
- 3 months ago
- 3 months ago
- 4 months ago