Page 1 of 1
Popup css height issue
Posted: Mon May 30, 2022 8:49 pm
by jbrown
The popup has something like a blank line after the last url entry. Is it possible to reduce the height so that the last entry is closer to the bottom?
Is that controlled by css or js code?
Re: Popup css height issue
Posted: Mon May 30, 2022 9:42 pm
by barbaz
Try this in userContent.css -
Code: Select all
#scrollable > #buttons {
display: none !important;
}
Re: Popup css height issue
Posted: Mon May 30, 2022 10:13 pm
by jbrown
Thank you, I have meanwhile figured it out myself. Better is:
Code: Select all
#scrollable > #buttons { margin: 1px !important }
which avoids the scrollbars.