Forum Discussion
RobLengacher
5 years agoCommunity Member
Autofit scroll bar right margin issue
As shown below, the Format Shape > Text box > Margins > Right value pushes the autofit scroll bar to left. This can hamper readability on some lines if the scroll bar is almost touching the text. Wh...
TongLi-4e5d1b3e
5 years agoCommunity Member
This is quite annoying. This issue reduces the readability of the text. Unfortunately, this problem still exits. One solution is to add "margin-right: 15px" in the text div box. This solution is not ideal. but at least leave a little bit space between the text and the scrollbar.
What you can do is creating a JS trigger on your slide and letting it fire when the page start to load. Add this code to the JS trigger you created:
var x=document.getElementsByClassName("textlib-content-wrap");
x[0].style.marginRight="15px";
This will add 15 px to the right of the text box and leave a little bit space between the text and the scrollbar.
Related Content
- 3 months ago
- 7 months ago
- 4 months ago