surveyjs / surveyjs-nodejs

This demo shows how to integrate SurveyJS components with a NodeJS backend.
https://surveyjs-nodejs.azurewebsites.net
Other
146 stars 93 forks source link

Bootstrap version #2

Closed guilhermesad closed 6 years ago

guilhermesad commented 6 years ago

Hi there! Thanks for this awesome repo.

Is there a way I can use the Bootstrap version of SurveyJS for the whole application? For example, for survey.js I've added the line Survey.Survey.cssType = "bootstrap"; like they say in the docs, but that didn't seem to make any effect.

tsv2013 commented 6 years ago

@guilhermesad - it looks like you need to add a corresponding stylesheet

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />

to the https://github.com/surveyjs/surveyjs-nodejs/blob/master/public/survey.html file.

Hope this helps.