Answered
fpd-color-palette
Hello,
Is it possible to set height of color palette in sidebar menu? For now I see just 3,5 lines of thumbnail colors.
Maybe something from CSS can help?
Hello,
Is it possible to set height of color palette in sidebar menu? For now I see just 3,5 lines of thumbnail colors.
Maybe something from CSS can help?
Hello Dawid Konieczny,
You can adjust the height of the color palette using CSS. Please inspect the elements, find the relevant CSS Class, and use that class in FPD > UI > CSS settings to adjust the height.
Thanks
1 person likes this
.fpd-container .fpd-colorpicker-wrapper .fpd-scroll-area {
max-height: 500px;
overflow-x: hidden;
margin-top: 10px;
}
Works fine :) Thanks!