Can you please provide styling option to differentiate user’s response then from a bot!?
Have you tried something like this (change the colour of the text to whatever you like)?
<script>
const style = document.createElement('style');
style.textContent = `
.scrollbar-thin {
color: red !important;
}
`;
document.head.appendChild(style);
</script>
1 Like
@ecaveo. We need this feature to be part of the Design tab so that it can benefit everyone. I am also looking to change the background of the user response.
@tgparmar75 as an end user and not part fo the Pickaxe team, I was just sharing the approach I used since it is very easy to implement, works and was hopefully helpful…
If you need it to be a feature on the design tab, my experience is that you would be better off raising it as a new feature request. If enough other people share your view, I’m sure the dev team will support it.
Thank you @ecaveo. The script snippet is very useful. I was able to achieve the effect.