Hi everyone,
I’m working on a Xojo Web App and noticed that the background of the WebListBox
has a stippled (dotted) pattern. This happens even when I set a solid background color.
Is there a way to remove this effect and have a clean, solid background?
I’m attaching a screenshot to show the issue.
Thanks in advance for any help!
Hi @Christoph_Romstorfer, give this a try. Put this code inside the App > HTML Header:
<style>
.XojoListBox div.dts div.dataTables_scrollBody {
background: none;
}
/* For Dark Mode */
[data-bs-theme=dark] .XojoListBox div.dts div.dataTables_scrollBody {
background: none;
}
</style>
Instead of none
, you can set any other color you want.
3 Likes