Allow FAQ content to be copied and paste

I am unable to copy and paste content in elfsight FAQ. Is there any way to enable this?

1 Like

Hi there, @Jasper_Phua :waving_hand:

Sorry about this inconvenience!

We’ve fixed the issue with this code added to the Custom CSS section on the Appearance tab of your widget’s settings:

.global-styles,
#main * {
 user-select: auto !important;
}

Please check it out and let me know if everything is fine now :wink:

1 Like

works perfect, thanks Max. Also is there any way I can adjust the white space above the FAQ search bar?

1 Like

Sure! You can change the spacing between the title and the search bar using this CSS code:

.es-widget-title {
    margin-bottom: 30px;
}

Feel free to adjust the margin-bottom value to your liking and let me know if it helped :wink:

1 Like