This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Pop UP Custom Value Height
#1
How can i adjust the size (Height) of a popup box. I have 7 custom values, but the pop up only show 5 of them, so you have to use the slider to show the missing 2 values.
I there a way to show all 7 custom values so the user does need to use the slider ?
Also need to enlarge the popup and center all popups to the center of the screen
Reply
#2
(07.06.2025, 15:27)sjfp Wrote: How can i adjust the size (Height) of a popup box. I have 7 custom values, but the pop up only show 5 of them, so you have to use the slider to show the missing 2 values.
I there a way to show all 7 custom values so the user does need to use the slider ?
Also need to enlarge the popup and center all popups to the center of the screen

Sorted, used the following in CSS

.control-vselect .popover-content .nav {
  max-height: 250px;
  overflow-y: auto;
}
Reply
#3
Use this CSS to center the control and make it larger:
Code:
.control-vselect {
  top: 50% !important;
  left: 50% !important;
  transform: scale(150%) translate(-50%, -50%) !important;
}
.control-vselect ul {
  max-height: none;
}
Reply
#4
Thank you for your help. Appreciated
Reply


Forum Jump: