Removing scrollbars

I asked this question before, but I can’t remember the answer…

In our dictionary book, we have textboxes that all contain only one line of text, Bloom Reader is adding a scrollbar.
I remember the fix was adding a line of code to the CustomStyleSheet.css.

Thanks!!

The most straight forward thing is to give them a little more room. Browsers are just is not smart enough to see that those letters do actually fit. They only know how much space a font theoretically could take, and that’s how much space they assume they need. You haven’t given it enough space for that theoretical maximum height, so the browser turns on a scroll bar.

Yes, you can override that overflow: visible; if you really want to.

Thanks John. We’ll try both ways.